summaryrefslogtreecommitdiff
path: root/api/types/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/types/types.go')
-rw-r--r--api/types/types.go26
1 files changed, 26 insertions, 0 deletions
diff --git a/api/types/types.go b/api/types/types.go
new file mode 100644
index 0000000..da581c9
--- /dev/null
+++ b/api/types/types.go
@@ -0,0 +1,26 @@
+package types
+
+import (
+ "database/sql"
+ "net/http"
+ "time"
+
+ "git.simponic.xyz/simponic/phoneassistant/args"
+)
+
+type RequestContext struct {
+ DBConn *sql.DB
+ Args *args.Arguments
+
+ Id string
+ Start time.Time
+
+ TemplateData *map[string]interface{}
+}
+
+type BannerMessages struct {
+ Messages []string
+}
+
+type Continuation func(*RequestContext, *http.Request, http.ResponseWriter) ContinuationChain
+type ContinuationChain func(Continuation, Continuation) ContinuationChain