feat : project structure

This commit is contained in:
2025-05-18 11:50:15 +03:30
parent 7f66476eca
commit 62b23a26df
5 changed files with 4 additions and 26 deletions

View File

@@ -1,6 +0,0 @@
import 'package:livestock/livestock.dart';
void main() {
var awesome = Awesome();
print('awesome: ${awesome.isAwesome}');
}

View File

@@ -3,6 +3,4 @@
/// More dartdocs go here.
library;
export 'src/livestock_base.dart';
// TODO: Export any libraries intended for clients of this package.

View File

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

View File

@@ -1,6 +1,7 @@
name: livestock
description: A starting point for Dart libraries or applications.
version: 1.0.0
publish_to: 'none'
# repository: https://github.com/my_org/my_repo
environment:
@@ -8,8 +9,9 @@ environment:
dependencies:
rasadyar_core:
path: ../core
rasadyar_core:
path: ../core
##code generation
freezed_annotation: ^3.0.0
json_annotation: ^4.9.0

View File

@@ -2,15 +2,5 @@ import 'package:livestock/livestock.dart';
import 'package:test/test.dart';
void main() {
group('A group of tests', () {
final awesome = Awesome();
setUp(() {
// Additional setup goes here.
});
test('First Test', () {
expect(awesome.isAwesome, isTrue);
});
});
}