mirror of
https://github.com/fumiama/terasu-cloudflared.git
synced 2026-06-05 00:50:24 +08: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{}
|
|
}
|