[NF] Senml now has a configure option to setup the guid [NF] Zway-Bot now listen on /exit [NF] Implment searchpath for Zway-Bot (/etc/zwaybot and %appdata%/zwaybot)
11 lines
334 B
C#
11 lines
334 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BlubbFish.Utils.IoT.Events;
|
|
|
|
namespace BlubbFish.Utils.IoT.Connector {
|
|
public abstract class ADataBackend : ABackend {
|
|
public ADataBackend(Dictionary<String, String> settings) : base(settings) { }
|
|
public abstract void Send(String topic, String data);
|
|
}
|
|
}
|