mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-01-01 02:56:22 -05:00
7 lines
176 B
Dart
7 lines
176 B
Dart
|
import 'package:veilid/veilid.dart';
|
||
|
|
||
|
Future<VeilidConfig> getVeilidChatConfig() async {
|
||
|
VeilidConfig config = await getDefaultVeilidConfig("VeilidChat");
|
||
|
return config;
|
||
|
}
|