├── .github └── workflows │ ├── code_coverage.yml │ ├── golangci_lint.yml │ └── goreportcard.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENCE.md ├── NOTICE.md ├── README.md ├── archetype.go ├── benchmark ├── arche_test.go ├── data.go ├── go.mod ├── go.sum ├── uecs_test.go └── volt_test.go ├── component.go ├── component_test.go ├── go.mod ├── go.sum ├── pool.go ├── query.go ├── query_test.go ├── register.go ├── register_test.go ├── storage.go ├── storage_test.go ├── tag.go ├── tag_test.go ├── world.go └── world_test.go /.github/workflows/code_coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/.github/workflows/code_coverage.yml -------------------------------------------------------------------------------- /.github/workflows/golangci_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/.github/workflows/golangci_lint.yml -------------------------------------------------------------------------------- /.github/workflows/goreportcard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/.github/workflows/goreportcard.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/LICENCE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- 1 | Volt 2 | 3 | Copyright 2024, Agoune Ramine 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/README.md -------------------------------------------------------------------------------- /archetype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/archetype.go -------------------------------------------------------------------------------- /benchmark/arche_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/benchmark/arche_test.go -------------------------------------------------------------------------------- /benchmark/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/benchmark/data.go -------------------------------------------------------------------------------- /benchmark/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/benchmark/go.mod -------------------------------------------------------------------------------- /benchmark/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/benchmark/go.sum -------------------------------------------------------------------------------- /benchmark/uecs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/benchmark/uecs_test.go -------------------------------------------------------------------------------- /benchmark/volt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/benchmark/volt_test.go -------------------------------------------------------------------------------- /component.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/component.go -------------------------------------------------------------------------------- /component_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/component_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/akmonengine/volt 2 | 3 | go 1.24.0 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/pool.go -------------------------------------------------------------------------------- /query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/query.go -------------------------------------------------------------------------------- /query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/query_test.go -------------------------------------------------------------------------------- /register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/register.go -------------------------------------------------------------------------------- /register_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/register_test.go -------------------------------------------------------------------------------- /storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/storage.go -------------------------------------------------------------------------------- /storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/storage_test.go -------------------------------------------------------------------------------- /tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/tag.go -------------------------------------------------------------------------------- /tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/tag_test.go -------------------------------------------------------------------------------- /world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/world.go -------------------------------------------------------------------------------- /world_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akmonengine/volt/HEAD/world_test.go --------------------------------------------------------------------------------