package cmd
import (
"fmt"
"github.com/spf13/viper"
//"github.com/ebitengine/oto/v3"
)
func tune() {
fmt.Println("tune called")
title := viper.Get("title")
fmt.Println(title)
}