about summary refs log tree commit diff
path: root/src/micropub/mod.rs
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2021-05-17 04:12:48 +0300
committerVika <vika@fireburn.ru>2021-05-17 04:12:48 +0300
commit696ae495aca701c3431710e5dfc03e15aba2f74e (patch)
tree3b58d7cb23a8edd5fdb7121ab420ed60a9af64cb /src/micropub/mod.rs
parent3dbe61f57873881dfbf5da8a335762a0e1dccbb5 (diff)
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.rs7
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