mirror of
https://github.com/rls-moe/nyx
synced 2025-04-20 06:18:38 +00:00
10 lines
92 B
Go
10 lines
92 B
Go
package middle
|
|
|
|
type ctxKey int64
|
|
|
|
const (
|
|
configKey ctxKey = iota
|
|
dbCtxKey
|
|
sessionKey
|
|
)
|