Skip to content
This repository was archived by the owner on Dec 14, 2021. It is now read-only.

Commit 2fa5ddf

Browse files
committed
Initial Commit
0 parents  commit 2fa5ddf

File tree

5 files changed

+83
-0
lines changed

5 files changed

+83
-0
lines changed

.editorconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
charset = utf-8
10+
11+
[*.go]
12+
indent_style = tab
13+
indent_size = 4
14+
15+
[*.md]
16+
trim_trailing_whitespace = false
17+
18+
[Makefile]
19+
indent_style = tab
20+
indent_size = 2

AUTHORS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This is the official list of The Things Network Go SDK authors for copyright purposes.
2+
#
3+
# The copyright owners listed in this document agree to release their work under
4+
# the MIT license that can be found in the LICENSE file.
5+
#
6+
# Names should be added to this file as
7+
# Firstname Lastname <email@address>
8+
#
9+
# Please keep the list sorted.
10+
11+
Hylke Visser <[email protected]>

CONTRIBUTING.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Contributing
2+
3+
There are many ways you can contribute to The Things Network.
4+
5+
- Share your work on the [Labs section of our website](https://www.thethingsnetwork.org/labs/)
6+
- Participate in [topics on our Forum](https://thethingsnetwork.org/forum/)
7+
- Talk with others on our [Slack](https://thethingsnetwork.slack.com/) ([_request invite_](https://account.thethingsnetwork.org))
8+
- Contribute to our [open source projects on github](https://github.com/TheThingsNetwork)
9+
10+
## Submitting issues
11+
12+
If something is wrong or missing, we want to know about it. Please submit an issue on Github explaining what exactly is the problem. **Give as many details as possible**. If you can (and want to) fix the issue, please tell us in the issue.
13+
14+
## Contributing pull requests
15+
16+
We warmly welcome your pull requests. Be sure to follow some simple guidelines so that we can quickly accept your contributions.
17+
18+
- Write tests
19+
- Write [good commit messages](https://chris.beams.io/posts/git-commit/)
20+
- Sign our [CLA](https://cla-assistant.io/TheThingsNetwork/go-app-sdk)

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2017 The Things Network
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# The Things Network Go SDK
2+
3+
[![Build Status](https://travis-ci.org/TheThingsNetwork/go-app-sdk.svg?branch=master)](https://travis-ci.org/TheThingsNetwork/go-app-sdk) [![Coverage Status](https://coveralls.io/repos/github/TheThingsNetwork/go-app-sdk/badge.svg?branch=master)](https://coveralls.io/github/TheThingsNetwork/go-app-sdk?branch=master) [![GoDoc](https://godoc.org/github.com/TheThingsNetwork/go-app-sdk?status.svg)](https://godoc.org/github.com/TheThingsNetwork/go-app-sdk)
4+
5+
![The Things Network](https://thethings.blob.core.windows.net/ttn/logo.svg)
6+
7+
## Usage
8+
9+
## License
10+
11+
Source code for The Things Network is released under the MIT License, which can be found in the [LICENSE](LICENSE) file. A list of authors can be found in the [AUTHORS](AUTHORS) file.

0 commit comments

Comments
 (0)