Files
todo-server/server/ajax/tag.go
Bel LaPointe f2e3a71348 Permissions
2019-11-25 12:47:29 -07:00

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")
}