steid
Sign in
@jamesgill
/
steid
Code
Commits
691bf98
At commit 691bf98
Branches
main
steid
/
src
/
infrastructure
/
web
/
mod.rs
451 B
Code
·
Blame
·
Raw
1
//!
The web surface: pages, forms, and the request-scoped helpers they use.
2
3
pub
mod
api
;
4
pub
mod
archive
;
5
pub
mod
blame
;
6
pub
mod
browse
;
7
pub
mod
commit
;
8
pub
mod
context
;
9
pub
mod
git
;
10
pub
mod
health
;
11
pub
mod
layout
;
12
pub
mod
markdown
;
13
pub
mod
pages
;
14
pub
mod
profile
;
15
pub
mod
rate_limit
;
16
pub
mod
refs
;
17
pub
mod
repo
;
18
pub
mod
repo_settings
;
19
pub
mod
search
;
20
pub
mod
security_headers
;
21
pub
mod
session_cookie
;
22
pub
mod
settings
;
23
pub
mod
setup
;
24
pub
mod
token
;