From ec841bad5e1132f44d9657a7b3bc85c08ba7885a Mon Sep 17 00:00:00 2001 From: Dominic Kanrabat Date: Wed, 24 Apr 2019 04:20:45 -0400 Subject: [PATCH] JSON example indent fix --- example/deefuzzer.json | 52 +++++++++++++++++++++++------------------- 1 file changed, 28 insertions(+), 24 deletions(-) diff --git a/example/deefuzzer.json b/example/deefuzzer.json index f5bb4cf..65a1dc6 100644 --- a/example/deefuzzer.json +++ b/example/deefuzzer.json @@ -85,30 +85,34 @@ } }, "station": { - "infos": { - "description": "MySQL funky playlist", - "genre": "Various Funk Groove", - "name": "My best funky station", - "short_name": "My_station2", - "url": "http://parisson.com" - }, - "media": { - "bitrate": 96, - "format": "mp3", - "ogg_quality": 4, - "samplerate": 48000, - "shuffle": 0, - "voices": 2, - "mysql": { - "host": "127.0.0.1", - "port": 3306, - "user": "username", - "password": "password", - "database": "deefuzze_database", - "table": "deefuzze_playlist", - "field": "mp3" - } - } + "control": { + "mode": 0, + "port": 16001 + }, + "infos": { + "description": "MySQL funky playlist", + "genre": "Various Funk Groove", + "name": "My best funky station managed with MySQL", + "short_name": "MySQL_station", + "url": "http://parisson.com" + }, + "media": { + "bitrate": 96, + "format": "mp3", + "ogg_quality": 4, + "samplerate": 48000, + "shuffle": 0, + "voices": 2, + "mysql": { + "host": "127.0.0.1", + "port": 3306, + "user": "username", + "password": "password", + "database": "database_name", + "table": "playlist_table", + "field": "absolute_path" + } + } } } } -- 2.47.3