8 lines
140 B
Go
8 lines
140 B
Go
|
package config
|
||
|
|
||
|
// Config for application setup
|
||
|
type Config interface {
|
||
|
BadgerPath() (string, error)
|
||
|
PushoverAPIToken() (string, error)
|
||
|
}
|