mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-22 14:36:35 +00:00

Since legacy tunnels have been removed for a while now, we can remove many of the capnp rpc interfaces that are no longer leveraged by the legacy tunnel registration and authentication mechanisms.
9 lines
271 B
Go
9 lines
271 B
Go
package pogs
|
|
|
|
// Tag previously was a legacy tunnel capnp struct but was deprecated. To help reduce the amount of changes imposed
|
|
// by removing this simple struct, it was copied out of the capnp and provided here instead.
|
|
type Tag struct {
|
|
Name string
|
|
Value string
|
|
}
|