diff options
author | Vika <vika@fireburn.ru> | 2021-05-17 04:12:48 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2021-05-17 04:12:48 +0300 |
commit | 696ae495aca701c3431710e5dfc03e15aba2f74e (patch) | |
tree | 3b58d7cb23a8edd5fdb7121ab420ed60a9af64cb /src/micropub/mod.rs | |
parent | 3dbe61f57873881dfbf5da8a335762a0e1dccbb5 (diff) | |
download | kittybox-696ae495aca701c3431710e5dfc03e15aba2f74e.tar.zst |
Refactoring, easter egg, healthcheck endpoint, support for rel= indieweb APIs and preparation for onboarding
Diffstat (limited to 'src/micropub/mod.rs')
-rw-r--r-- | src/micropub/mod.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/micropub/mod.rs b/src/micropub/mod.rs index ec5cd87..9bc553c 100644 --- a/src/micropub/mod.rs +++ b/src/micropub/mod.rs @@ -1,5 +1,6 @@ -mod get; -mod post; +pub mod get; +pub mod post; pub use get::get_handler; -pub use post::post_handler; \ No newline at end of file +pub use post::post_handler; +pub use post::normalize_mf2; \ No newline at end of file |