├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── relations.go ├── tmeta.go ├── tmeta_test.go ├── tmetadbr ├── docker_test.go ├── tmetadbr.go ├── tmetadbr_test.go ├── types_test.go └── util.go ├── tmetautil ├── criteria.go ├── criteria_test.go ├── dbtime.go ├── order-by.go └── order-by_test.go ├── types_test.go └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/go.sum -------------------------------------------------------------------------------- /relations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/relations.go -------------------------------------------------------------------------------- /tmeta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmeta.go -------------------------------------------------------------------------------- /tmeta_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmeta_test.go -------------------------------------------------------------------------------- /tmetadbr/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetadbr/docker_test.go -------------------------------------------------------------------------------- /tmetadbr/tmetadbr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetadbr/tmetadbr.go -------------------------------------------------------------------------------- /tmetadbr/tmetadbr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetadbr/tmetadbr_test.go -------------------------------------------------------------------------------- /tmetadbr/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetadbr/types_test.go -------------------------------------------------------------------------------- /tmetadbr/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetadbr/util.go -------------------------------------------------------------------------------- /tmetautil/criteria.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetautil/criteria.go -------------------------------------------------------------------------------- /tmetautil/criteria_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetautil/criteria_test.go -------------------------------------------------------------------------------- /tmetautil/dbtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetautil/dbtime.go -------------------------------------------------------------------------------- /tmetautil/order-by.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetautil/order-by.go -------------------------------------------------------------------------------- /tmetautil/order-by_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/tmetautil/order-by_test.go -------------------------------------------------------------------------------- /types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/types_test.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gocaveman/tmeta/HEAD/util.go --------------------------------------------------------------------------------