Files
ng-blog/internal/config/service.go
schreifuchs 68574ad289
All checks were successful
Release / publish (push) Successful in 5m27s
add configurable name
2025-07-08 11:57:16 +02:00

11 lines
159 B
Go

package config
import (
"encoding/json"
"net/http"
)
func (c *Config) Handle(w http.ResponseWriter, r *http.Request) {
json.NewEncoder(w).Encode(c.Web)
}