@@ -0,0 +1,5 @@
+.idea/
+.vscode/
+*.exe
+*.log*
+*.zip
@@ -0,0 +1,4 @@
+# Intro
+
+prayerwheel is a notify server.
@@ -0,0 +1 @@
+# Admin Panel
+package prayerwheel
@@ -0,0 +1,3 @@
+module prayerwheel
+go 1.15
+package admapi
+package api
@@ -0,0 +1,15 @@
+package config
+type Db struct {
+ Type string
+ Host string
+ Port uint16
+ Username string
+ Password string
+ Encode string
+}
+type Config struct {
+ Addr string
+ Database Db
+package models
+package rds