almost working

This commit is contained in:
Henry Hiles 2025-11-06 22:03:24 -05:00
commit 4c1d9baa41
No known key found for this signature in database
14 changed files with 1690 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import 'package:tmi/tmi.dart';
import "package:riverpod/riverpod.dart";
class ClientController extends Notifier<Client> {
@override
Client build() => Client(channels: "cozyp62", secure: true)..connect();
static final provider = NotifierProvider<ClientController, Client>(
ClientController.new,
);
}