init postman

This commit is contained in:
Ashita Prasad
2024-12-01 20:19:29 +05:30
parent c3fa035e5c
commit b187718b27
11 changed files with 301 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
/// Support for doing something awesome.
///
/// More dartdocs go here.
library;
export 'src/postman_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;
}