tune/cmd/tune.go

16 lines
187 B
Go
Raw Normal View History

2024-05-16 08:58:32 +02:00
package cmd
2024-05-16 09:13:02 +02:00
import (
"fmt"
"github.com/spf13/viper"
//"github.com/ebitengine/oto/v3"
2024-05-16 09:13:02 +02:00
)
2024-05-16 08:58:32 +02:00
func tune() {
fmt.Println("tune called")
2024-05-16 08:58:32 +02:00
title := viper.Get("title")
fmt.Println(title)
2024-05-16 08:58:32 +02:00
}