13 lines
260 B
Go
13 lines
260 B
Go
|
package config
|
||
|
|
||
|
type Experiments struct {
|
||
|
FilestoreEnabled bool
|
||
|
UrlstoreEnabled bool
|
||
|
ShardingEnabled bool
|
||
|
Libp2pStreamMounting bool
|
||
|
P2pHttpProxy bool
|
||
|
QUIC bool
|
||
|
PreferTLS bool
|
||
|
StrategicProviding bool
|
||
|
}
|