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

10 lines
120 B
Go

package config
type UseCase interface {
Addr() string
DBFileName() string
Host() string
Port() int
URL() string
}