mirror of
https://github.com/netbirdio/netbird.git
synced 2025-08-01 04:10:51 +02:00
9 lines
106 B
Go
9 lines
106 B
Go
package operations
|
|
|
|
type Operation string
|
|
|
|
const (
|
|
Read Operation = "read"
|
|
Write Operation = "write"
|
|
)
|