Skip to content

Commit

Permalink
Exports optimized
Browse files Browse the repository at this point in the history
  • Loading branch information
vcarrerasj committed Nov 28, 2022
1 parent 843bdec commit 0f8fb73
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Easily manipulate sqlite databases in Dart using this package. The designed obje
* [FieldTypeDb][]: Defines the type of the value of a column of a table in a database. SQLite does not have a separate Boolean storage class. Instead, Boolean values are stored as integers 0 (false) and 1 (true).
* [ObjectStored][]: All objects that intend to be stored in SQLite databases should extend the ObjectStored class.
* [PSQLite][]: Encapsulates a database that is made up of a TableDb and a database name.
* [PSQLite][]: Encapsulates a database that is made up of a TableDb and a database name.

## Usage example

Expand Down
2 changes: 2 additions & 0 deletions lib/psqlite.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ export 'package:psqlite/src/field_type_db.dart';
export 'package:psqlite/src/object_stored.dart';
export 'package:psqlite/src/psqlite.dart';
export 'package:psqlite/src/table_db.dart';
export 'package:psqlite/src/condition_db.dart';
export 'package:psqlite/src/filter_db.dart';
2 changes: 0 additions & 2 deletions lib/src/psqlite.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import 'dart:async';

import 'package:path/path.dart';
import 'package:psqlite/src/filter_db.dart';
import 'package:psqlite/src/condition_db.dart';
import 'package:sqflite/sqflite.dart';

import '../psqlite.dart';
Expand Down
1 change: 0 additions & 1 deletion test/example/user_storage_service.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'package:psqlite/psqlite.dart';
import 'package:psqlite/src/filter_db.dart';

import 'user.dart';

Expand Down

0 comments on commit 0f8fb73

Please sign in to comment.