summaryrefslogtreecommitdiff
path: root/api/types
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth@simponic.xyz>2025-01-12 23:09:34 -0800
committerElizabeth Hunt <elizabeth@simponic.xyz>2025-01-12 23:09:34 -0800
commit18a945aab9b3129b82076f633fab1d13ba28148e (patch)
tree09703cdc24992c42c5c14051e73e0b614280f5bd /api/types
downloadphoneassistant-18a945aab9b3129b82076f633fab1d13ba28148e.tar.gz
phoneassistant-18a945aab9b3129b82076f633fab1d13ba28148e.zip
initial commit by simponic-infra
Diffstat (limited to 'api/types')
-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