implement first prototype of the logo upload API

This commit is contained in:
David Christofas
2023-02-13 13:36:30 +01:00
parent e853b98918
commit 20e4e56d28
8 changed files with 76 additions and 82 deletions
+5
View File
@@ -28,3 +28,8 @@ func (l logging) ServeHTTP(w http.ResponseWriter, r *http.Request) {
func (l logging) Config(w http.ResponseWriter, r *http.Request) {
l.next.Config(w, r)
}
// UploadLogo implements the Service interface.
func (l logging) UploadLogo(w http.ResponseWriter, r *http.Request) {
l.next.UploadLogo(w, r)
}