mirror of
https://github.com/openziti/zrok.git
synced 2026-08-28 10:16:59 -05:00
16 lines
294 B
Go
16 lines
294 B
Go
package dynamicProxyController
|
|
|
|
type Operation string
|
|
|
|
const (
|
|
OperationBind Operation = "bnd"
|
|
OperationUnbind Operation = "ubd"
|
|
)
|
|
|
|
type Mapping struct {
|
|
Id int64 `json:"id"`
|
|
Operation Operation `json:"o"`
|
|
Name string `json:"n"`
|
|
ShareToken string `json:"st"`
|
|
}
|