aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-rw-r--r--src/config.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs
new file mode 100644
index 0000000..99e8cff
--- /dev/null
+++ b/src/config.rs
@@ -0,0 +1,17 @@
+//! Configuration to run octopus
+
+pub struct Config {
+ app_path: String,
+ port: u16,
+ handle_ssl: bool,
+ cache_path: String,
+ repos_path: String,
+ repo_discovery: bool,
+ repos: Vec<RepoConfig>
+}
+
+pub struct RepoConfig {
+ name: String,
+ description: String,
+ category: String,
+}