github.com/seeker-insurance/kit@v0.0.13/brewerydb/brewerydb.go (about) 1 package brewerydb 2 3 type LocationType string 4 5 const ( 6 Micro LocationType = "micro" 7 Macro LocationType = "macro" 8 Nano LocationType = "nano" 9 PrewPub LocationType = "prewpub" 10 Office LocationType = "office" 11 Production LocationType = "production" 12 Tasting LocationType = "office" 13 Restaraunt LocationType = "restaurant" 14 Cidery LocationType = "cidery" 15 Meadery LocationType = "meadery" 16 )