This repository has been archived on 2022-09-10. You can view files and clone it, but cannot push or open issues or pull requests.
tunnel/types.go
2022-09-09 06:31:47 +00:00

12 lines
131 B
Go

package tunnel
import "github.com/google/uuid"
type ID string
func NewID() ID {
return ID(uuid.NewString())
}
type Type uint8