├── .github └── CODEOWNERS ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── app.go ├── base ├── basecmd │ └── cmd.go ├── basedao │ └── dao.go ├── basehttp │ ├── default_validator.go │ └── http.go ├── basemodel │ └── model.go ├── basetask │ └── task.go └── basethird │ ├── http.go │ └── rpc.go ├── cmd.go ├── com.go ├── coms ├── es │ ├── elastic.go │ └── elastic_test.go ├── etcd │ ├── etcd.go │ └── etcd_test.go ├── kafka │ ├── kafka.go │ └── kafka_test.go ├── locker │ ├── README.md │ ├── etcd │ │ └── etcd.go │ ├── lock │ │ └── lock.go │ ├── locker.go │ ├── locker_test.go │ └── redis │ │ └── redis.go ├── logger │ ├── hook.go │ ├── logger.go │ ├── logger_test.go │ └── stdout_hook.go ├── mgo │ ├── mgo.go │ └── mgo_test.go ├── orm │ └── orm.go └── rds │ ├── redis.go │ ├── redis_cmd.go │ └── redis_test.go ├── conf.go ├── ctx.go ├── error.go ├── example ├── app │ ├── g │ │ ├── errors.go │ │ ├── ghttp │ │ │ ├── base.go │ │ │ └── middleware.go │ │ ├── gmodel │ │ │ └── gmodel.go │ │ ├── gservice │ │ │ └── base.go │ │ ├── preinit │ │ │ └── orm.go │ │ └── type.go │ ├── libs │ │ └── trace │ │ │ └── ctx.go │ ├── modules │ │ └── demo │ │ │ ├── democmd │ │ │ └── demo.go │ │ │ ├── demodao │ │ │ └── user.go │ │ │ ├── demodto │ │ │ └── user.go │ │ │ ├── demohttp │ │ │ ├── index.go │ │ │ └── user.go │ │ │ ├── demomodel │ │ │ └── user.go │ │ │ ├── demorpc │ │ │ ├── README.md │ │ │ ├── demopb │ │ │ │ ├── home.pb.go │ │ │ │ └── home.proto │ │ │ ├── home.go │ │ │ └── home_test.go │ │ │ ├── demoservice │ │ │ └── user.go │ │ │ └── demotask │ │ │ └── demo.go │ ├── route │ │ ├── preinit.go │ │ └── route.go │ └── third │ │ └── homeapi │ │ ├── home.go │ │ └── home_rpc.go ├── conf │ └── app.toml ├── dist │ ├── assets │ │ └── yago.png │ └── index.html ├── embed.go ├── env.init.sh ├── main.go └── tools │ └── build.sh ├── go.mod ├── libs ├── arr │ └── slice.go ├── date │ ├── date.go │ └── date_test.go ├── excellib │ ├── excel.go │ └── excel_test.go ├── mathlib │ ├── math.go │ └── math_test.go ├── semalib │ ├── semaphore.go │ └── semaphore_test.go ├── str │ ├── str.go │ └── str_test.go ├── treelib │ ├── tree.go │ └── tree_test.go └── validatelib │ ├── validator.go │ └── validator_extend.go ├── router.go ├── sig.go ├── sig_windows.go ├── translator.go └── yago ├── gen_api.go ├── gen_cmd.go ├── gen_dao.go ├── gen_http.go ├── gen_http_method.go ├── gen_model.go ├── gen_rpc.go ├── gen_service.go ├── gen_service_method.go ├── gen_task.go ├── gen_type.go ├── init_cmd.go ├── main.go ├── new_cmd.go ├── run_cmd.go ├── template.go ├── util.go └── version.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/README.md -------------------------------------------------------------------------------- /app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/app.go -------------------------------------------------------------------------------- /base/basecmd/cmd.go: -------------------------------------------------------------------------------- 1 | package basecmd 2 | 3 | type BaseCmd struct { 4 | } 5 | -------------------------------------------------------------------------------- /base/basedao/dao.go: -------------------------------------------------------------------------------- 1 | package basedao 2 | -------------------------------------------------------------------------------- /base/basehttp/default_validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/base/basehttp/default_validator.go -------------------------------------------------------------------------------- /base/basehttp/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/base/basehttp/http.go -------------------------------------------------------------------------------- /base/basemodel/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/base/basemodel/model.go -------------------------------------------------------------------------------- /base/basetask/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/base/basetask/task.go -------------------------------------------------------------------------------- /base/basethird/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/base/basethird/http.go -------------------------------------------------------------------------------- /base/basethird/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/base/basethird/rpc.go -------------------------------------------------------------------------------- /cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/cmd.go -------------------------------------------------------------------------------- /com.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/com.go -------------------------------------------------------------------------------- /coms/es/elastic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/es/elastic.go -------------------------------------------------------------------------------- /coms/es/elastic_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/es/elastic_test.go -------------------------------------------------------------------------------- /coms/etcd/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/etcd/etcd.go -------------------------------------------------------------------------------- /coms/etcd/etcd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/etcd/etcd_test.go -------------------------------------------------------------------------------- /coms/kafka/kafka.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/kafka/kafka.go -------------------------------------------------------------------------------- /coms/kafka/kafka_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/kafka/kafka_test.go -------------------------------------------------------------------------------- /coms/locker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/locker/README.md -------------------------------------------------------------------------------- /coms/locker/etcd/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/locker/etcd/etcd.go -------------------------------------------------------------------------------- /coms/locker/lock/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/locker/lock/lock.go -------------------------------------------------------------------------------- /coms/locker/locker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/locker/locker.go -------------------------------------------------------------------------------- /coms/locker/locker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/locker/locker_test.go -------------------------------------------------------------------------------- /coms/locker/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/locker/redis/redis.go -------------------------------------------------------------------------------- /coms/logger/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/logger/hook.go -------------------------------------------------------------------------------- /coms/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/logger/logger.go -------------------------------------------------------------------------------- /coms/logger/logger_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/logger/logger_test.go -------------------------------------------------------------------------------- /coms/logger/stdout_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/logger/stdout_hook.go -------------------------------------------------------------------------------- /coms/mgo/mgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/mgo/mgo.go -------------------------------------------------------------------------------- /coms/mgo/mgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/mgo/mgo_test.go -------------------------------------------------------------------------------- /coms/orm/orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/orm/orm.go -------------------------------------------------------------------------------- /coms/rds/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/rds/redis.go -------------------------------------------------------------------------------- /coms/rds/redis_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/rds/redis_cmd.go -------------------------------------------------------------------------------- /coms/rds/redis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/coms/rds/redis_test.go -------------------------------------------------------------------------------- /conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/conf.go -------------------------------------------------------------------------------- /ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/ctx.go -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/error.go -------------------------------------------------------------------------------- /example/app/g/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/g/errors.go -------------------------------------------------------------------------------- /example/app/g/ghttp/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/g/ghttp/base.go -------------------------------------------------------------------------------- /example/app/g/ghttp/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/g/ghttp/middleware.go -------------------------------------------------------------------------------- /example/app/g/gmodel/gmodel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/g/gmodel/gmodel.go -------------------------------------------------------------------------------- /example/app/g/gservice/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/g/gservice/base.go -------------------------------------------------------------------------------- /example/app/g/preinit/orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/g/preinit/orm.go -------------------------------------------------------------------------------- /example/app/g/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/g/type.go -------------------------------------------------------------------------------- /example/app/libs/trace/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/libs/trace/ctx.go -------------------------------------------------------------------------------- /example/app/modules/demo/democmd/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/democmd/demo.go -------------------------------------------------------------------------------- /example/app/modules/demo/demodao/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demodao/user.go -------------------------------------------------------------------------------- /example/app/modules/demo/demodto/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demodto/user.go -------------------------------------------------------------------------------- /example/app/modules/demo/demohttp/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demohttp/index.go -------------------------------------------------------------------------------- /example/app/modules/demo/demohttp/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demohttp/user.go -------------------------------------------------------------------------------- /example/app/modules/demo/demomodel/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demomodel/user.go -------------------------------------------------------------------------------- /example/app/modules/demo/demorpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demorpc/README.md -------------------------------------------------------------------------------- /example/app/modules/demo/demorpc/demopb/home.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demorpc/demopb/home.pb.go -------------------------------------------------------------------------------- /example/app/modules/demo/demorpc/demopb/home.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demorpc/demopb/home.proto -------------------------------------------------------------------------------- /example/app/modules/demo/demorpc/home.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demorpc/home.go -------------------------------------------------------------------------------- /example/app/modules/demo/demorpc/home_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demorpc/home_test.go -------------------------------------------------------------------------------- /example/app/modules/demo/demoservice/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demoservice/user.go -------------------------------------------------------------------------------- /example/app/modules/demo/demotask/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/modules/demo/demotask/demo.go -------------------------------------------------------------------------------- /example/app/route/preinit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/route/preinit.go -------------------------------------------------------------------------------- /example/app/route/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/route/route.go -------------------------------------------------------------------------------- /example/app/third/homeapi/home.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/third/homeapi/home.go -------------------------------------------------------------------------------- /example/app/third/homeapi/home_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/app/third/homeapi/home_rpc.go -------------------------------------------------------------------------------- /example/conf/app.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/conf/app.toml -------------------------------------------------------------------------------- /example/dist/assets/yago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/dist/assets/yago.png -------------------------------------------------------------------------------- /example/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/dist/index.html -------------------------------------------------------------------------------- /example/embed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/embed.go -------------------------------------------------------------------------------- /example/env.init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/env.init.sh -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/main.go -------------------------------------------------------------------------------- /example/tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/example/tools/build.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/go.mod -------------------------------------------------------------------------------- /libs/arr/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/arr/slice.go -------------------------------------------------------------------------------- /libs/date/date.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/date/date.go -------------------------------------------------------------------------------- /libs/date/date_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/date/date_test.go -------------------------------------------------------------------------------- /libs/excellib/excel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/excellib/excel.go -------------------------------------------------------------------------------- /libs/excellib/excel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/excellib/excel_test.go -------------------------------------------------------------------------------- /libs/mathlib/math.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/mathlib/math.go -------------------------------------------------------------------------------- /libs/mathlib/math_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/mathlib/math_test.go -------------------------------------------------------------------------------- /libs/semalib/semaphore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/semalib/semaphore.go -------------------------------------------------------------------------------- /libs/semalib/semaphore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/semalib/semaphore_test.go -------------------------------------------------------------------------------- /libs/str/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/str/str.go -------------------------------------------------------------------------------- /libs/str/str_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/str/str_test.go -------------------------------------------------------------------------------- /libs/treelib/tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/treelib/tree.go -------------------------------------------------------------------------------- /libs/treelib/tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/treelib/tree_test.go -------------------------------------------------------------------------------- /libs/validatelib/validator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/validatelib/validator.go -------------------------------------------------------------------------------- /libs/validatelib/validator_extend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/libs/validatelib/validator_extend.go -------------------------------------------------------------------------------- /router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/router.go -------------------------------------------------------------------------------- /sig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/sig.go -------------------------------------------------------------------------------- /sig_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/sig_windows.go -------------------------------------------------------------------------------- /translator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/translator.go -------------------------------------------------------------------------------- /yago/gen_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_api.go -------------------------------------------------------------------------------- /yago/gen_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_cmd.go -------------------------------------------------------------------------------- /yago/gen_dao.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_dao.go -------------------------------------------------------------------------------- /yago/gen_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_http.go -------------------------------------------------------------------------------- /yago/gen_http_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_http_method.go -------------------------------------------------------------------------------- /yago/gen_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_model.go -------------------------------------------------------------------------------- /yago/gen_rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_rpc.go -------------------------------------------------------------------------------- /yago/gen_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_service.go -------------------------------------------------------------------------------- /yago/gen_service_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_service_method.go -------------------------------------------------------------------------------- /yago/gen_task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_task.go -------------------------------------------------------------------------------- /yago/gen_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/gen_type.go -------------------------------------------------------------------------------- /yago/init_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/init_cmd.go -------------------------------------------------------------------------------- /yago/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/main.go -------------------------------------------------------------------------------- /yago/new_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/new_cmd.go -------------------------------------------------------------------------------- /yago/run_cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/run_cmd.go -------------------------------------------------------------------------------- /yago/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/template.go -------------------------------------------------------------------------------- /yago/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/util.go -------------------------------------------------------------------------------- /yago/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hulklab/yago/HEAD/yago/version.go --------------------------------------------------------------------------------