12 lines
149 B
Go
12 lines
149 B
Go
|
|
package constants
|
||
|
|
|
||
|
|
const (
|
||
|
|
ContextRequestID string = "requestId"
|
||
|
|
)
|
||
|
|
|
||
|
|
type UserType string
|
||
|
|
|
||
|
|
func (u UserType) toString() string {
|
||
|
|
return string(u)
|
||
|
|
}
|