10 lines
139 B
Go
10 lines
139 B
Go
package blog
|
|
|
|
import "net/http"
|
|
|
|
|
|
func (b *Backend) editorPage(w http.ResponseWriter, r *http.Request) {
|
|
pag := r.PathValue("page")
|
|
if
|
|
}
|