mirror of
https://github.com/yusing/godoxy.git
synced 2026-02-18 08:27:43 +01:00
11 lines
146 B
Go
11 lines
146 B
Go
package fields
|
|
|
|
type (
|
|
Host string
|
|
Subdomain = Alias
|
|
)
|
|
|
|
func ValidateHost[String ~string](s String) (Host, error) {
|
|
return Host(s), nil
|
|
}
|