feat: implement database handlerImplement a database api to manage nodes and relationships in a "graph databaselike" implemented in sqlite.closes #1

This commit is contained in:
Alexander Navarro 2024-11-13 19:55:02 +00:00
parent 5aaacb10e3
commit b2d8dadcee
17 changed files with 963 additions and 0 deletions

View file

@ -0,0 +1,6 @@
name,category,metadata
Gin,web framework,"{""website"":""https://gin-gonic.com"",""github"":""gin-gonic/gin"",""package"":""github.com/gin-gonic/gin""}"
Cobra,cli,"{""website"":""https://cobra.dev"",""github"":""spf13/cobra"",""package"":""github.com/spf13/cobra""}"
GORM,orm,"{""website"":""https://gorm.io"",""github"":""go-gorm/gorm"",""package"":""gorm.io/gorm""}"
Colly,web scraping,"{""website"":""http://go-colly.org"",""github"":""gocolly/colly"",""package"":""github.com/gocolly/colly""}"
gorilla/websocket,websockets,"{""github"":""gorilla/websocket"",""package"":""github.com/gorilla/websocket"",""protocol"":""ws""}"
1 name category metadata
2 Gin web framework {"website":"https://gin-gonic.com","github":"gin-gonic/gin","package":"github.com/gin-gonic/gin"}
3 Cobra cli {"website":"https://cobra.dev","github":"spf13/cobra","package":"github.com/spf13/cobra"}
4 GORM orm {"website":"https://gorm.io","github":"go-gorm/gorm","package":"gorm.io/gorm"}
5 Colly web scraping {"website":"http://go-colly.org","github":"gocolly/colly","package":"github.com/gocolly/colly"}
6 gorilla/websocket websockets {"github":"gorilla/websocket","package":"github.com/gorilla/websocket","protocol":"ws"}