break out ws.go
This commit is contained in:
15
cmd/server/v1.go
Normal file
15
cmd/server/v1.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func isV1(r *http.Request) bool {
|
||||
return strings.HasPrefix(r.URL.Path, "/v1/")
|
||||
}
|
||||
|
||||
func (s *S) serveV1(w http.ResponseWriter, r *http.Request) error {
|
||||
return fmt.Errorf("not impl: v1")
|
||||
}
|
||||
Reference in New Issue
Block a user