2024-05-16 08:58:32 +02:00
|
|
|
package cmd
|
|
|
|
|
2024-05-16 09:13:02 +02:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2024-05-16 09:30:48 +02:00
|
|
|
"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() {
|
2024-05-16 09:30:48 +02:00
|
|
|
fmt.Println("tune called")
|
2024-05-16 08:58:32 +02:00
|
|
|
|
2024-05-16 09:30:48 +02:00
|
|
|
title := viper.Get("title")
|
|
|
|
fmt.Println(title)
|
2024-05-16 08:58:32 +02:00
|
|
|
}
|