mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 20:52:33 +02:00
10 lines
146 B
Go
10 lines
146 B
Go
package fields
|
|
|
|
type (
|
|
Host string
|
|
Subdomain = Alias
|
|
)
|
|
|
|
func ValidateHost[String ~string](s String) (Host, error) {
|
|
return Host(s), nil
|
|
}
|