summaryrefslogtreecommitdiff
path: root/pkg/app/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/app/config.go')
-rw-r--r--pkg/app/config.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkg/app/config.go b/pkg/app/config.go
new file mode 100644
index 0000000..d34e647
--- /dev/null
+++ b/pkg/app/config.go
@@ -0,0 +1,16 @@
+package app
+
+import (
+
+)
+
+type Config struct {
+ Mode string
+ Directories []string
+}
+
+func LoadConfiguration() (*Config, error) {
+ config := &Config{
+ }
+ return config, nil
+} \ No newline at end of file