mirror of
https://github.com/rls-moe/nyx
synced 2024-11-14 22:12:24 +00:00
10 lines
92 B
Go
10 lines
92 B
Go
package middle
|
|
|
|
type ctxKey int64
|
|
|
|
const (
|
|
configKey ctxKey = iota
|
|
dbCtxKey
|
|
sessionKey
|
|
)
|