Files
AynaLivePlayer/config/config_test.go
2022-07-15 16:30:50 -07:00

16 lines
210 B
Go

package config
import (
"fmt"
"testing"
)
func TestCreate(t *testing.T) {
fmt.Println(SaveToConfigFile(ConfigPath))
}
func TestLoad(t *testing.T) {
fmt.Println(Log.Path)
fmt.Println(Player.Playlists)
}