package interfaces import ( "context" ) type ILogger interface { Info(ctx context.Context, msg string, fields ...interface{}) Error(ctx context.Context, msg string, fields ...interface{}) Debug(ctx context.Context, msg string, fields ...interface{}) Warn(ctx context.Context, msg string, fields ...interface{}) }