mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 22:26:34 +00:00
15 lines
189 B
Go
15 lines
189 B
Go
package allregions
|
|
|
|
type UsedBy struct {
|
|
ConnID int
|
|
Used bool
|
|
}
|
|
|
|
func InUse(connID int) UsedBy {
|
|
return UsedBy{ConnID: connID, Used: true}
|
|
}
|
|
|
|
func Unused() UsedBy {
|
|
return UsedBy{}
|
|
}
|