diff options
| author | xengineering <me@xengineering.eu> | 2023-04-12 18:50:34 +0200 |
|---|---|---|
| committer | xengineering <me@xengineering.eu> | 2023-04-12 18:50:34 +0200 |
| commit | 4eacd5f54074c6cd73eaef4178c56843ce742445 (patch) | |
| tree | 66fb1929c84310e27c21d4fc7e21f830849191af /handler.go | |
| parent | ba971b29db4579db8e95d920d6c035d621fe2531 (diff) | |
| download | ceres-4eacd5f54074c6cd73eaef4178c56843ce742445.tar ceres-4eacd5f54074c6cd73eaef4178c56843ce742445.tar.zst ceres-4eacd5f54074c6cd73eaef4178c56843ce742445.zip | |
Switch to unnested config
This is now just not needed.
Diffstat (limited to 'handler.go')
| -rw-r--r-- | handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -209,6 +209,6 @@ func addRecipesGet(w http.ResponseWriter, r *http.Request) { func staticGet(w http.ResponseWriter, r *http.Request, filename string) { - path := filepath.Join(config.Http.Static, filename) + path := filepath.Join(config.Static, filename) http.ServeFile(w, r, path) } |
