Skip to content

Commit

Permalink
feat: access entire lib from one import
Browse files Browse the repository at this point in the history
  • Loading branch information
iyifr committed Oct 8, 2024
1 parent e267cdb commit 830ee8c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion bin/main.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'package:h4/create.dart';
import 'package:h4/utils/req_utils.dart';

void main() async {
var app = createApp(
Expand Down
5 changes: 0 additions & 5 deletions bin/run.dart
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
// import 'package:console/console.dart' as console;

import 'dart:math';

import 'package:h4/create.dart';
import 'package:h4/utils/body_utils.dart';
import 'package:h4/utils/req_utils.dart';
// import 'package:h4/utils/request_utils.dart';

void main(List<String> arguments) async {
var app = createApp(
Expand Down
3 changes: 3 additions & 0 deletions lib/create.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
export 'package:h4/src/create_error.dart';
export 'package:h4/utils/req_utils.dart';
export 'package:h4/utils/response_utils.dart';
export 'package:h4/utils/body_utils.dart';
export 'package:h4/src/event.dart';
import 'package:h4/src/h4.dart';
import 'package:h4/src/router.dart';
Expand Down

0 comments on commit 830ee8c

Please sign in to comment.