github.com/kyleu/dbaudit@v0.0.2-0.20240321155047-ff2f2c940496/app/controller/cutil/location.go (about)

     1  // Package cutil - Content managed by Project Forge, see [projectforge.md] for details.
     2  package cutil
     3  
     4  type Location struct {
     5  	URL   string `json:"url"`
     6  	Title string `json:"title"`
     7  	Icon  string `json:"icon,omitempty"`
     8  }
     9  
    10  type Locations []*Location