serve static assets from embeded filesystem. add build files for lazyos

This commit is contained in:
Robin Olsen
2026-02-26 10:33:46 +01:00
parent d83422104b
commit c769c901cf
7 changed files with 56 additions and 5 deletions

View File

@@ -6,8 +6,8 @@ import (
)
var ListTasksCmd = &cobra.Command{
Use: "list-tasks",
Aliases: []string{"ls-t"},
Use: "tasks",
Aliases: []string{"t"},
Short: "List available tasks",
RunE: func(cmd *cobra.Command, args []string) error {
for i, name := range task.ListTasks() {
@@ -18,8 +18,8 @@ var ListTasksCmd = &cobra.Command{
}
var ListInterfacesCmd = &cobra.Command{
Use: "list-interfaces",
Aliases: []string{"ls-i"},
Use: "interfaces",
Aliases: []string{"i"},
Short: "List available interfaces",
RunE: func(cmd *cobra.Command, args []string) error {
for i, name := range task.ListInterfaces() {