From beb9386ecff843a12e247ab3711a7dba7f9c6916 Mon Sep 17 00:00:00 2001 From: Muzzammil Shahid Date: Thu, 2 May 2024 14:06:04 +0500 Subject: [PATCH] Export client, session and types --- lib/exports.dart | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 lib/exports.dart diff --git a/lib/exports.dart b/lib/exports.dart new file mode 100644 index 0000000..2e17925 --- /dev/null +++ b/lib/exports.dart @@ -0,0 +1,3 @@ +export "src/client.dart" show Client; +export "src/session.dart" show Session; +export "src/types.dart" show Event, Invocation, Registration, Result, Subscription;