Unittesting begins
This commit is contained in:
14
server/ajax/tag.go
Normal file
14
server/ajax/tag.go
Normal file
@@ -0,0 +1,14 @@
|
||||
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")
|
||||
}
|
||||
Reference in New Issue
Block a user