aboutsummaryrefslogtreecommitdiff
path: root/src/modules/blog.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-12 02:32:47 -0700
committerFuwn <[email protected]>2022-06-12 02:32:47 -0700
commitd2da92336fb109600e59c9ed1e4976ebf891d82c (patch)
treea124de93b3aedf04aee8f9d3e21b987ea2bb150f /src/modules/blog.rs
parentfeat(blog): projects blog (diff)
downloadlocus-d2da92336fb109600e59c9ed1e4976ebf891d82c.tar.xz
locus-d2da92336fb109600e59c9ed1e4976ebf891d82c.zip
feat(blog): sub-blog configuration
Diffstat (limited to 'src/modules/blog.rs')
-rw-r--r--src/modules/blog.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/modules/blog.rs b/src/modules/blog.rs
new file mode 100644
index 0000000..4672ec2
--- /dev/null
+++ b/src/modules/blog.rs
@@ -0,0 +1,22 @@
+// This file is part of Locus <https://github.com/gemrest/locus>.
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+//
+// This program is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, version 3.
+//
+// This program is distributed in the hope that it will be useful, but
+// WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program. If not, see <http://www.gnu.org/licenses/>.
+//
+// Copyright (C) 2022-2022 Fuwn <[email protected]>
+// SPDX-License-Identifier: GPL-3.0-only
+
+mod config;
+mod module;
+
+pub use module::module;