From 222454221c415ad6fff7300d5bf717773dad1861 Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 19 Nov 2018 06:47:39 +0100 Subject: [PATCH] add section_config.rs --- src/lib.rs | 2 ++ src/section_config.rs | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 src/section_config.rs diff --git a/src/lib.rs b/src/lib.rs index 6ff16017..8dd39e4b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,6 +12,8 @@ pub mod api { } +pub mod section_config; + pub mod storage { pub mod futures; diff --git a/src/section_config.rs b/src/section_config.rs new file mode 100644 index 00000000..9df9060c --- /dev/null +++ b/src/section_config.rs @@ -0,0 +1,9 @@ + + +struct SectionConfig { + +} + +impl SectionConfig { + +}