Пример #1
0
func playing(client playsource.PlaysourceClient) {
	resp, err := client.GetPlaying(context.Background(), &playsource.GetPlayingRequest{})
	if err != nil {
		log.Fatal(err)
	}

	log.Printf("Playing: [%v] %v", resp.Song)
}