9 lines
188 B
Go
9 lines
188 B
Go
package Interfaces
|
|
|
|
type ComponentsInterface interface {
|
|
Set(items ...[]any) string
|
|
Image(inputs any) []any
|
|
LicensesBuild(licenses ...[]any) []any
|
|
CreateMainMenu(items ...any) []any
|
|
}
|