Files
mal/cmd
mkelvers 6b19a0dce7 cli: add create-user command to main_server
This replaces the bash script with an embedded command in the Go binary so it can be executed within the docker container.
2026-04-27 09:05:59 +02:00
..

cmd

Executable entrypoints live here.

  • cmd/server: main web process (go run ./cmd/server)

Why this structure

I wanted to keep the repository root clean and focused on project metadata like README.md, go.mod, and Dockerfile. Keeping entrypoints under cmd/ also makes it easy to add more binaries later without cluttering the root, and it matches standard Go conventions for projects that grow beyond a single binary.