auth/internal/config/repository.go

8 lines
126 B
Go

package config
type Repository interface {
GetBool(key string) bool
GetInt(key string) int
GetString(key string) string
}