oktopus/backend/services/stomp/logger.go
2023-10-28 16:00:27 -03:00

14 lines
316 B
Go

package stomp
type Logger interface {
Debugf(format string, value ...interface{})
Infof(format string, value ...interface{})
Warningf(format string, value ...interface{})
Errorf(format string, value ...interface{})
Debug(message string)
Info(message string)
Warning(message string)
Error(message string)
}