todo-server/server/ajax/tag.go

15 lines
262 B
Go
Executable File

package ajax
import (
"errors"
"net/http"
)
func (a *Ajax) suggestTags(w http.ResponseWriter, r *http.Request) error {
return errors.New("not impl")
}
func (a *Ajax) tagCloud(w http.ResponseWriter, r *http.Request) error {
return errors.New("not impl")
}