mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 18:32:50 +08:00
21 lines
305 B
Go
21 lines
305 B
Go
package gui
|
|
|
|
import (
|
|
"fyne.io/fyne/v2"
|
|
)
|
|
|
|
type bascicConfig struct{}
|
|
|
|
func (b bascicConfig) Title() string {
|
|
return "Basic"
|
|
}
|
|
|
|
func (b bascicConfig) Description() string {
|
|
return "Basic configuration"
|
|
}
|
|
|
|
func (b bascicConfig) Create() fyne.CanvasObject {
|
|
//TODO implement me
|
|
panic("implement me")
|
|
}
|