Skip to content
This repository was archived by the owner on Nov 29, 2022. It is now read-only.

Commit 1ea5920

Browse files
author
Sungjin Han
committed
Edit README.md
1 parent 77a0368 commit 1ea5920

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,21 @@ Add dependencies to the `pubspec.yaml` file:
1313
```yaml
1414
dependencies:
1515
telegram:
16-
git: https://github.com/meinside/telegram-bot-dart
16+
git: https://github.com/meinside/telegram-bot-dart.git
1717
```
1818
1919
## usage
2020
21+
```dart
22+
// in your source file,
23+
24+
import 'package:telegram/telegram.dart';
25+
26+
// ...
27+
```
28+
29+
## samples/examples
30+
2131
See the files in [./example/](https://github.com/meinside/telegram-bot-dart/tree/master/example).
2232

2333
## LICENSE

lib/telegram.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
33
library telegram;
44

5-
import 'src/types.dart';
6-
import 'src/http.dart';
7-
85
import 'dart:async';
96
import 'dart:convert';
107

118
import 'package:convert/convert.dart';
129
import 'package:crypto/crypto.dart' as crypto;
1310
import 'package:intl/intl.dart';
1411

12+
import 'src/types.dart';
13+
import 'src/http.dart';
14+
1515
export 'src/types.dart';
1616
export 'src/http.dart';
1717

0 commit comments

Comments
 (0)