mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
08.46.2018 5db1733cdfdac831cc10ff734c61d68079c47d1f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package de.micromata.borgbutler;
 
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
public class Main {
    private static Logger log = LoggerFactory.getLogger(Main.class);
 
    public static void main(String[] args) {
        new Main().start(args);
    }
 
    private void start(String[] args) {
        log.info("Hello Borgbutler...");
    }
}