From a04faab2a7c031b95e6e7553f9921c3bada2bc08 Mon Sep 17 00:00:00 2001 From: Bobby <30593201+luciferreeves@users.noreply.github.com> Date: Tue, 20 Jan 2026 14:19:25 +0530 Subject: Implemented processors and add HTTPRequest and HTTPQueryParam types and Created utility functions for building request metadata. --- config/env.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'config') diff --git a/config/env.go b/config/env.go index 4e6b50f..dd9eb70 100644 --- a/config/env.go +++ b/config/env.go @@ -1,10 +1,12 @@ package config type server struct { - Host string `env:"SERVER_HOST" default:"localhost"` - Port int `env:"SERVER_PORT" default:"8080"` - AppSecret string `env:"APP_SECRET" default:"mysecret"` - DevMode bool `env:"DEV_MODE" default:"true"` + Host string `env:"SERVER_HOST" default:"localhost"` + Port int `env:"SERVER_PORT" default:"8080"` + AppSecret string `env:"APP_SECRET" default:"mysecret"` + AppName string `env:"APP_NAME" default:"Shifoo's Cafe"` + AppDescription string `env:"APP_DESCRIPTION" default:"A cozy place for close friends"` + DevMode bool `env:"DEV_MODE" default:"true"` } type database struct { -- cgit v1.2.3