Skip to content

Commit 74d97ae

Browse files
committed
create dart project
1 parent 2f5172c commit 74d97ae

File tree

8 files changed

+52
-1
lines changed

8 files changed

+52
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 1.0.0
2+
3+
- Initial version.

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,21 @@
1-
# aha-dart
1+
aha-dart
2+
23
Dart client for the AVM Home Automation HTTP Interface + Login
4+
5+
## Usage
6+
7+
A simple usage example:
8+
9+
```dart
10+
import 'package:aha_client/aha_client.dart';
11+
12+
main() {
13+
var awesome = new Awesome();
14+
}
15+
```
16+
17+
## Features and bugs
18+
19+
Please file feature requests and bugs at the [issue tracker][tracker].
20+
21+
[tracker]: http://example.com/issues/replaceme

analysis_options.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
include: package:lint/analysis_options_package.yaml
2+
3+
# For lint rules and documentation, see http://dart-lang.github.io/linter/lints.
4+
5+
# Uncomment to specify additional rules.
6+
# linter:
7+
# rules:
8+
# - camel_case_types
9+
10+
# analyzer:
11+
# exclude:
12+
# - path/to/excluded/files/**

example/aha_client_example.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
void main() {}

lib/aha_client.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

lib/src/.gitkeep

Whitespace-only changes.

pubspec.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: aha_client
2+
description: Dart client for the AVM Home Automation HTTP Interface + Login.
3+
version: 1.0.0
4+
homepage: https://github.com/Skycoder42/aha-dart
5+
6+
environment:
7+
sdk: '>=2.13.0 <3.0.0'
8+
9+
# dependencies:
10+
# path: ^1.8.0
11+
12+
dev_dependencies:
13+
lint: ^1.6.0
14+
test: ^1.16.0
15+

test/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)