feat: Update internal HTTP server to use Fiber v2 with new routes and middleware configuration

This commit is contained in:
2025-03-25 09:51:54 +01:00
parent d51ced2c6a
commit 272f5cabcf
6 changed files with 94 additions and 0 deletions

8
main.go Normal file
View File

@@ -0,0 +1,8 @@
package main
import "git.dev-null.rocks/alexohneander/gosearch/internal/http"
func main() {
// Start HTTP Server
http.StartService()
}