-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document source code better and add pkg level comments
- Loading branch information
Miguel Molina
committed
Feb 8, 2017
1 parent
cff692b
commit cb126bb
Showing
12 changed files
with
291 additions
and
239 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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Kallax is a PostgreSQL typesafe ORM for the Go language. | ||
// | ||
// Kallax aims to provide a way of programmatically write queries and interact | ||
// with a PostgreSQL database without having to write a single line of SQL, | ||
// use strings to refer to columns and use values of any type in queries. | ||
// For that reason, the first priority of kallax is to provide type safety to | ||
// the data access layer. | ||
// Another of the goals of kallax is make sure all models are, first and | ||
// foremost, Go structs without having to use database-specific types such as, | ||
// for example, `sql.NullInt64. | ||
// Support for arrays of all basic Go types and all JSON and arrays operators is | ||
// provided as well. | ||
package kallax |
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.