10 lines
131 B
Go
10 lines
131 B
Go
package constants
|
|
|
|
type apiKey string
|
|
|
|
const APIKey apiKey = "api-key"
|
|
|
|
func (t apiKey) String() string {
|
|
return string(APIKey)
|
|
}
|