Initial commit

This commit is contained in:
2022-06-30 14:00:18 +02:00
commit 18c6fdb54e
11 changed files with 221 additions and 0 deletions

8
lib/omemo_dart.dart Normal file
View File

@@ -0,0 +1,8 @@
/// Support for doing something awesome.
///
/// More dartdocs go here.
library omemo_dart;
export 'src/omemo_dart_base.dart';
// TODO: Export any libraries intended for clients of this package.

View File

@@ -0,0 +1,6 @@
// TODO: Put public facing types in this file.
/// Checks if you are awesome. Spoiler: you are.
class Awesome {
bool get isAwesome => true;
}