diff --git a/config.go b/config.go new file mode 100644 index 0000000..ffce37d --- /dev/null +++ b/config.go @@ -0,0 +1,7 @@ +package authcontrol + +type ServiceConfig struct { + URL string `toml:"url"` + JWTSecret string `toml:"jwt_secret"` + AccessKey string `toml:"access_key"` +}