feat(proxy): Init commit

This commit is contained in:
Björn Benouarets
2025-11-10 19:08:13 +01:00
commit 56d609fafd
9 changed files with 208 additions and 0 deletions

18
app/main.go Normal file
View File

@@ -0,0 +1,18 @@
package main
import (
"git.secnex.io/secnex/masterlog"
)
func main() {
proxy, err := NewProxy()
if err != nil {
masterlog.Error("Failed to create proxy", map[string]interface{}{
"error": err.Error(),
})
return
}
masterlog.Info("Starting proxy server on :8080")
proxy.Start()
}