9 lines
117 B
Go
9 lines
117 B
Go
|
package oplog
|
||
|
|
||
|
import "esway/internal/model"
|
||
|
|
||
|
type OpLog struct {
|
||
|
Type model.OpLogType
|
||
|
Content map[string]any
|
||
|
}
|