diff options
author | sadbeast <sadbeast@sadbeast.com> | 2024-07-16 18:16:29 -0700 |
---|---|---|
committer | sadbeast <sadbeast@sadbeast.com> | 2024-10-05 16:40:55 -0700 |
commit | 6bd24af2ffbea91db1b10a5d5258980ce2068c7f (patch) | |
tree | 66634833f2d45260be5fcaf9111400eda12f03cc /src/RequestContext.zig | |
download | teamdraft-6bd24af2ffbea91db1b10a5d5258980ce2068c7f.tar.gz teamdraft-6bd24af2ffbea91db1b10a5d5258980ce2068c7f.tar.bz2 |
Diffstat (limited to 'src/RequestContext.zig')
-rw-r--r-- | src/RequestContext.zig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/RequestContext.zig b/src/RequestContext.zig new file mode 100644 index 0000000..7d88294 --- /dev/null +++ b/src/RequestContext.zig @@ -0,0 +1,5 @@ +app: *App, +user: ?User = null, + +const App = @import("App.zig"); +const User = @import("User.zig"); |