[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)
12 lines
388 B
C#
12 lines
388 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using BlubbFish.Utils.IoT.Events;
|
|
|
|
namespace BlubbFish.Utils.IoT.Connector {
|
|
public abstract class AUserBackend : ABackend {
|
|
public AUserBackend(Dictionary<String, String> settings) : base(settings) {}
|
|
public abstract void Send(String message);
|
|
public abstract void Send(String message, String[] buttons);
|
|
}
|
|
}
|