mirror of
https://github.com/zyphlar/LanternPowerMonitor.git
synced 2024-03-08 14:07:47 +00:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.lanternsoftware.thermometer;
|
||||
|
||||
import com.lanternsoftware.thermometer.context.ThermometerApp;
|
||||
|
||||
public class TestStartup {
|
||||
public static void main(String[] args) {
|
||||
ThermometerApp app = new ThermometerApp();
|
||||
app.start();
|
||||
try {
|
||||
Thread.sleep(20000);
|
||||
} catch (InterruptedException _e) {
|
||||
_e.printStackTrace();
|
||||
}
|
||||
app.stop();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user