auth/internal/config/repository.go
2021-09-25 20:21:47 +05:00

7 lines
100 B
Go

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