thoth_realtime 0.1.0
thoth_realtime: ^0.1.0 copied to clipboard
A self-hosted Pusher Protocol WebSocket server for Maat applications.
import 'package:thoth_realtime/thoth_realtime.dart';
void main() {
final frame = PusherFrame('task.updated', {
'id': 1,
'completed': true,
}, channel: 'tasks');
print(frame.encode());
}