import 'package:sqflite/sqflite.dart';
abstract class HabitDbInterface {
Future<Database> get database;
Future<String> get fullPath;
}