Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Add very basic (possibly temporary) Provider configs #38

Merged
merged 2 commits into from
Jul 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ type Config struct {
Swarm SwarmConfig
Pubsub PubsubConfig

Provider Provider
Reprovider Reprovider
Experimental Experiments
}
Expand Down
5 changes: 5 additions & 0 deletions provider.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package config

type Provider struct {
Strategy string // Which keys to announce
}