summary refs log tree commit diff stats
path: root/internal/server/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/server/app.go')
-rw-r--r--internal/server/app.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/server/app.go b/internal/server/app.go
new file mode 100644
index 0000000..d1a7dbc
--- /dev/null
+++ b/internal/server/app.go
@@ -0,0 +1,10 @@
+package server
+
+import (
+	"net/http"
+)
+
+type App struct {
+	Domain  string
+	Handler http.Handler
+}