diff options
author | Alexander NeonXP Kiryukhin <i@neonxp.ru> | 2024-07-20 21:56:37 +0300 |
---|---|---|
committer | Alexander NeonXP Kiryukhin <i@neonxp.ru> | 2024-07-20 21:58:27 +0300 |
commit | e9a64f3b41b5eae47dec7c0ecfd1caae83136abc (patch) | |
tree | c07898520a7015c3f2a201ca0674efea82dd76a5 /contextlib/context.go | |
parent | 9c0a6b21f8f8d9b725e1fe7f11da4532e04fd9f1 (diff) |
initialv0.0.1
Diffstat (limited to 'contextlib/context.go')
-rw-r--r-- | contextlib/context.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contextlib/context.go b/contextlib/context.go new file mode 100644 index 0000000..34c511e --- /dev/null +++ b/contextlib/context.go @@ -0,0 +1,8 @@ +package contextlib + +type contextKey string + +var ( + ThemeKey contextKey = "theme" + UserKey contextKey = "user" +) |