Skip to content

Commit

Permalink
fixup! feat!: rework library structure
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Jan 5, 2024
1 parent 38ff2a5 commit 687dbbf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
2 changes: 0 additions & 2 deletions lib/core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
/// runtime used for consuming, exposing, and discovering Things.
library core;

export "package:dcaf/dcaf.dart";

export "src/core/definitions.dart";
export "src/core/implementation.dart";
export "src/core/scripting_api.dart";
1 change: 1 addition & 0 deletions lib/src/binding_coap/coap_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import "dart:typed_data";

import "package:coap/coap.dart" as coap;
import "package:coap/config/coap_config_default.dart";
import "package:dcaf/dcaf.dart";

import "../../core.dart";

Expand Down
1 change: 1 addition & 0 deletions lib/src/binding_coap/coap_extensions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import "dart:typed_data";

import "package:cbor/cbor.dart";
import "package:coap/coap.dart";
import "package:dcaf/dcaf.dart";

import "../../core.dart" hide PskCredentials;

Expand Down
2 changes: 2 additions & 0 deletions lib/src/core/definitions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
/// [spec link]: https://www.w3.org/TR/wot-thing-description11/
library definitions;

export "package:dcaf/dcaf.dart" show AuthServerRequestCreationHint;

export "definitions/additional_expected_response.dart";

export "definitions/credentials/ace_credentials.dart";
Expand Down
2 changes: 1 addition & 1 deletion lib/src/core/definitions/credentials/callbacks.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import "package:dcaf/dcaf.dart";

import "../../implementation/augmented_form.dart";
import "../../implementation.dart";
import "../form.dart";
import "ace_credentials.dart";
import "credentials.dart";
Expand Down

0 comments on commit 687dbbf

Please sign in to comment.