mirror of
https://github.com/netbirdio/netbird.git
synced 2025-07-23 17:05:29 +02:00
11 lines
167 B
Go
11 lines
167 B
Go
package operations
|
|
|
|
type Operation string
|
|
|
|
const (
|
|
Create Operation = "create"
|
|
Read Operation = "read"
|
|
Update Operation = "update"
|
|
Delete Operation = "delete"
|
|
)
|