2025-04-21 09:31:22 +00:00

9 lines
106 B
Go

package operations
type Operation string
const (
Read Operation = "read"
Write Operation = "write"
)