Files

9 lines
106 B
Go

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