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