This commit finalizes the project restructuring into a Core-compatible service. - The `crypt` package is now a service with methods instead of standalone functions. - Cryptographic implementations (`lthn`, `chachapoly`, `rsa`) are now in `pkg/crypt/std`. - The `trix` package has been moved to `pkg/trix`. - The `rootfs` components have been removed to decouple the library from storage. - All import paths have been updated to reflect the new structure. - A `Taskfile.yml` has been added for managing common tasks.
12 lines
166 B
YAML
12 lines
166 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
test:
|
|
desc: "Run all tests"
|
|
cmds:
|
|
- go test -v ./...
|
|
|
|
build:
|
|
desc: "Build the project"
|
|
cmds:
|
|
- go build -v ./...
|