feat : add liveStock package

This commit is contained in:
2025-05-18 11:15:28 +03:30
parent 1b30dafafc
commit 7f66476eca
10 changed files with 151 additions and 1 deletions

View File

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