-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from brunomvsouza/documentation
Add licence on files and package descriptions
- Loading branch information
Showing
41 changed files
with
174 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package account implements account entities and services | ||
package account // import "go.bmvs.io/ynab/api/account" | ||
|
||
// Account represents an account for a budget | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package account | ||
|
||
// Type identifies an account type | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package account_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package account | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package budget implements budget entities and services | ||
package budget // import "go.bmvs.io/ynab/api/budget" | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package budget_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package budget | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package budget_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package category implements category entities and services | ||
package category // import "go.bmvs.io/ynab/api/category" | ||
import "go.bmvs.io/ynab/api" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package category | ||
|
||
// Goal represents the goal of a category | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package category_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package category | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package category_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package api implements shared structures and behaviours of | ||
// the API services | ||
package api // import "go.bmvs.io/ynab/api" | ||
|
||
// ClientReader contract for a read only client | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package api | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package api_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package api | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package api_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package month implements month entities and services | ||
package month // import "go.bmvs.io/ynab/api/month" | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package month_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package month | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package month_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package payee implements payee entities and services | ||
package payee // import "go.bmvs.io/ynab/api/payee" | ||
|
||
// Payee represents a payee for a budget | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package payee_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package payee | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package payee_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package api | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package api | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package transaction implements transaction entities and services | ||
package transaction // import "go.bmvs.io/ynab/api/transaction" | ||
|
||
import "go.bmvs.io/ynab/api" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package transaction | ||
|
||
// Status represents the type of a transaction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package transaction_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package transaction | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package transaction | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package transaction_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package user implements transaction user and services | ||
package user // import "go.bmvs.io/ynab/api/user" | ||
|
||
// User represents an user | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package user_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package user | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package user_test | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
// Package ynab implements the client API | ||
package ynab // import "go.bmvs.io/ynab" | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package ynab | ||
|
||
import ( | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// Copyright (c) 2018, Bruno M V Souza <[email protected]>. All rights reserved. | ||
// Use of this source code is governed by a BSD-2-Clause license that can be | ||
// found in the LICENSE file. | ||
|
||
package ynab_test | ||
|
||
import ( | ||
|