8 lines
121 B
Go
Raw Normal View History

2024-07-11 16:37:26 +08:00
package interfaces
type OpLogger interface {
Enum
Render(content map[string]any) (string, error)
Template() string
}