mirror of
https://github.com/yusing/godoxy.git
synced 2026-01-19 09:57:08 +01:00
13 lines
207 B
Go
13 lines
207 B
Go
package fields
|
|
|
|
import (
|
|
E "github.com/yusing/go-proxy/internal/error"
|
|
)
|
|
|
|
type Host string
|
|
type Subdomain = Alias
|
|
|
|
func ValidateHost[String ~string](s String) (Host, E.NestedError) {
|
|
return Host(s), nil
|
|
}
|