FEMT: Basic frontend-service implementation (#104229)

* create the most basic frontend-server module

* expose prom metrics??

* add todo list

* move frontend-service to its own folder in services

* check error from writer.Write

* reword comment, add launch config
This commit is contained in:
Josh Hunt
2025-04-24 13:14:21 +01:00
committed by GitHub
parent 8e6b8fad01
commit a8aa6b74a8
5 changed files with 128 additions and 1 deletions
+2
View File
@@ -9,6 +9,7 @@ const (
StorageServer string = "storage-server"
ZanzanaServer string = "zanzana-server"
InstrumentationServer string = "instrumentation-server"
FrontendServer string = "frontend-server"
)
var dependencyMap = map[string][]string{
@@ -17,4 +18,5 @@ var dependencyMap = map[string][]string{
ZanzanaServer: {InstrumentationServer},
Core: {},
All: {Core},
FrontendServer: {},
}