mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 00:06:38 +00:00
9 lines
106 B
Go
9 lines
106 B
Go
package operations
|
|
|
|
type Operation string
|
|
|
|
const (
|
|
Read Operation = "read"
|
|
Write Operation = "write"
|
|
)
|