| 1 | // SPDX-License-Identifier: AGPL-3.0-or-later |
| 2 | |
| 3 | // Command shithubd is the entrypoint binary for shithub. |
| 4 | // |
| 5 | // It exposes web/ssh/worker/migrate/admin subcommands. See `shithubd --help` |
| 6 | // for the full list, and `.docs/sprints/` for which subcommands are |
| 7 | // implemented in which sprint. |
| 8 | package main |
| 9 | |
| 10 | func main() { |
| 11 | Execute() |
| 12 | } |
| 13 |