Impl delete find filters for boltdb

This commit is contained in:
Bel LaPointe
2020-07-23 16:41:50 -06:00
parent 085150a7b5
commit bed265a228
13 changed files with 670 additions and 92 deletions

13
view/httpmeet.go Normal file
View File

@@ -0,0 +1,13 @@
package view
import (
"local/dndex/storage"
"net/http"
"path"
)
func httpmeet(g storage.Graph, w http.ResponseWriter, r *http.Request) error {
namespace := path.Base(r.URL.Path)
w.Write([]byte(namespace))
return nil
}