Advanced Distributed Systems module at HSLU
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
462 B

using System.Text;
using M2Mqtt;
using M2Mqtt.Messages;
using System.Text.Json;
namespace RaspiControl {
class Programm {
private static readonly NLog.Logger log = NLog.LogManager.GetCurrentClassLogger();
static void Main(string[] args) {
try {
Application app = new Application();
app.Run();
} catch (Exception ex) {
log.Error(ex);
}
}
}
}