Added saving to jsl

This commit is contained in:
Dmitry Lyukov
2016-03-28 23:31:02 +03:00
parent b39de5538a
commit 04afe993a7
2 changed files with 45 additions and 0 deletions

View File

@@ -309,6 +309,8 @@ func main() {
SaveToCsvFile(exportingData, keyMap, *outputPath, *fullExport)
case ".json":
SaveToJSONFile(exportingData, keyMap, *outputPath, *fullExport)
case ".jsl":
SaveToJSLFile(exportingData, keyMap, *outputPath, *fullExport)
default:
log.Fatal("Incorrect file type")
}