url.go 85 B

1234567
  1. package domain
  2. type URL string
  3. func (u URL) IsEmpty() bool {
  4. return len(u) == 0
  5. }