2024-03-25 23:37:30 +01:00
|
|
|
// apparmor.d - Full set of apparmor profiles
|
|
|
|
// Copyright (C) 2021-2024 Alexandre Pujol <alexandre@pujol.io>
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
|
2024-10-02 17:22:46 +02:00
|
|
|
package prebuild
|
2024-03-25 23:37:30 +01:00
|
|
|
|
|
|
|
import "fmt"
|
|
|
|
|
|
|
|
type BaseInterface interface {
|
|
|
|
Message() string
|
|
|
|
Name() string
|
2024-09-26 23:05:47 +02:00
|
|
|
Usage() []string
|
2024-03-25 23:37:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type Base struct {
|
|
|
|
Msg string
|
|
|
|
Keyword string
|
2024-09-26 23:05:47 +02:00
|
|
|
Help []string
|
2024-03-25 23:37:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b Base) Name() string {
|
|
|
|
return b.Keyword
|
|
|
|
}
|
|
|
|
|
2024-09-26 23:05:47 +02:00
|
|
|
func (b Base) Usage() []string {
|
2024-03-25 23:37:30 +01:00
|
|
|
return b.Help
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b Base) Message() string {
|
|
|
|
return b.Msg
|
|
|
|
}
|
|
|
|
|
|
|
|
func Help[T BaseInterface](name string, tasks map[string]T) string {
|
|
|
|
res := fmt.Sprintf("%s tasks:\n", name)
|
|
|
|
for _, t := range tasks {
|
|
|
|
res += fmt.Sprintf(" %s - %s\n", t.Name(), t.Message())
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|