An open API service indexing awesome lists of open source software.

https://github.com/blakeliafk/q


https://github.com/blakeliafk/q

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

### q

一个足够小足够好用的对象查询库.

```golang

import "github.com/DGHeroin/q"

func T() {
query := q.New()
query.FromJson([]byte(`{"name":"q"}`))
query.String("name")
}

```