auth/internal/config/repository.go

7 lines
100 B
Go
Raw Normal View History

package config
type Repository interface {
2021-09-25 15:21:47 +00:00
GetInt(key string) int
GetString(key string) string
}