Files
fileserver/internal/api/routes.go
Fabio Scotto di Santolo 1a5d437311 Initial commit
2025-06-01 01:18:30 +02:00

9 lines
141 B
Go

package api
import "net/http"
var Routes = map[string]func(w http.ResponseWriter, r *http.Request){
"/": Hello,
"/file": LoadFile,
}