greatape/greataped/contracts/logger.go

13 wiersze
132 B
Go

package contracts
type (
LoggerType int
ILogger interface {
Info(...any)
Debug(...any)
Error(...any)
Fatal(...any)
}
)