1
0

docs: adjust documentation to reflect single-binary deployments

This commit is contained in:
kolaente
2024-02-09 19:09:19 +01:00
parent 11b72765c9
commit 1984527fae
28 changed files with 732 additions and 1226 deletions

View File

@ -19,7 +19,7 @@ Please refer to its documentation for information about how to use flags etc.
To add a new cli command, add something like the following:
{{< highlight golang >}}
```go
func init() {
rootCmd.AddCommand(myCmd)
}
@ -31,4 +31,4 @@ var myCmd = &cobra.Command{
// Call other functions
},
}
{{</ highlight >}}
```