spy16 / droplets

Droplets is a platform for Gophers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Search doesn't show

skydev2020 opened this issue · comments

Hi.
After installing and running the application whenever I search the anything in the query.
http://localhost:8080/search?query=k
This shows "404 page doesn't show"
I am looking at the controller in the .go file and also template .tpl file, but I couldn't find it.
Thanks

Sorry, this is not completed yet. I am not actively working on this also. This repo was mainly meant for demonstrating Go conventions many of which are already being followed. But the entire application is not in end-to-end working state.

// Search finds all the posts matching the parameters in the query.
func (ret *Retriever) Search(ctx context.Context, query Query) ([]domain.Post, error) {
	return nil, errors.New("not implemented")
}