Skip to content

Commit

Permalink
chore: add missing library directives
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed May 13, 2023
1 parent 1086c7f commit f386126
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/binding_coap.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/// the [WoT Binding Templates Specification][spec link] for CoAP.
///
/// [spec link]: https://www.w3.org/TR/wot-binding-templates/
library binding_coap;

export 'src/binding_coap/coap_client_factory.dart';
export 'src/binding_coap/coap_config.dart';
Expand Down
1 change: 1 addition & 0 deletions lib/binding_http.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/// the [WoT Binding Templates Specification][spec link] for HTTP.
///
/// [spec link]: https://www.w3.org/TR/wot-binding-templates/
library binding_http;

export 'src/binding_http/http_client_factory.dart';
export 'src/binding_http/http_config.dart';
Expand Down
1 change: 1 addition & 0 deletions lib/binding_mqtt.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/// the latest [WoT Binding Templates Specification][spec link] for MQTT.
///
/// [spec link]: https://w3c.github.io/wot-binding-templates/bindings/protocols/mqtt
library binding_mqtt;

export 'src/binding_mqtt/mqtt_client_factory.dart';
export 'src/binding_mqtt/mqtt_config.dart';
1 change: 1 addition & 0 deletions lib/core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
/// Core implementation providing Scripting API implementations, interfaces
/// for protocol bindings, and the `Servient` class which provides the WoT
/// runtime used for consuming, exposing, and discovering Things.
library core;

export 'package:dcaf/dcaf.dart';

Expand Down
1 change: 1 addition & 0 deletions lib/definitions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/// [WoT Thing Description Specification][spec link].
///
/// [spec link]: https://www.w3.org/TR/wot-thing-description11/
library definitions;

export 'src/definitions/form.dart';
export 'src/definitions/thing_description.dart';
Expand Down
1 change: 1 addition & 0 deletions lib/scripting_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/// [WoT Scripting API Specification][spec link].
///
/// [spec link]: https://www.w3.org/TR/wot-scripting-api/
library scripting_api;

export 'src/scripting_api/consumed_thing.dart';
export 'src/scripting_api/discovery/discovery_method.dart';
Expand Down

0 comments on commit f386126

Please sign in to comment.