aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.go b/main.go
index 98fb5d7..3efb9ff 100644
--- a/main.go
+++ b/main.go
@@ -25,13 +25,13 @@ func main() {
// Routing and templates
template := html.New("./views", ".html")
- template.Debug(true)
route.TemplateFunctions(template)
app := fiber.New(fiber.Config{
- AppName: "FChannel",
- Views: template,
+ AppName: "FChannel",
+ Views: template,
+ ServerHeader: "FChannel/" + config.InstanceName,
})
app.Use(logger.New())