mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 18:32:50 +08:00
16 lines
210 B
Go
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)
|
|
}
|