diff options
| author | Fuwn <[email protected]> | 2022-04-14 23:59:04 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-04-14 23:59:04 -0700 |
| commit | ab9db24a9fd7884353730e02e0afdcd175f7183e (patch) | |
| tree | e52ef40afa883d19fe1ce0f15cfb34ea8cf7f9be /src | |
| parent | feat: track router creation (diff) | |
| download | locus-ab9db24a9fd7884353730e02e0afdcd175f7183e.tar.xz locus-ab9db24a9fd7884353730e02e0afdcd175f7183e.zip | |
feat: add explicit licensing terms
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index b14d89e..c848fb0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -273,6 +273,12 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> { ); mount_page!(router, "/interests", "A few interests of Fuwn", "interests"); mount_page!(router, "/skills", "A few skills of Fuwn", "skills"); + mount_page!( + router, + "/licensing", + "The licensing terms of this Gemini capsule", + "licensing" + ); info!( "static mounts took {}ms", |