Added a check for the config file
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-05-01 23:02:31 -04:00
parent 3742c44c40
commit ffb7d2d9f1
3 changed files with 16 additions and 5 deletions

View File

@ -9,9 +9,11 @@ import tech.bitgoblin.video.Transcoder;
*/
public class App {
private static final String configFile = "~/.config/dragoon.toml";
public static void main(String[] args) {
// read our config file
Config c = new Config("~/dragoon/config.toml");
Config c = new Config(configFile);
// create new Transcoder object and start the service
//Transcoder t = new Transcoder("~/dragoon");
//t.transcode();