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