mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-13 20:16:30 +00:00
17 lines
533 B
Go
17 lines
533 B
Go
|
// Package Meddler is a small toolkit to take some of the tedium out of moving data
|
||
|
// back and forth between SQL queries and structs.
|
||
|
//
|
||
|
// It is not a complete ORM. It is intended to be lightweight way to add some
|
||
|
// of the convenience of an ORM while leaving more control in the hands of the
|
||
|
// programmer.
|
||
|
//
|
||
|
// Package docs are available at:
|
||
|
//
|
||
|
// http://godoc.org/github.com/russross/meddler
|
||
|
//
|
||
|
// The package is housed on GitHub, and the README there has more info:
|
||
|
//
|
||
|
// http://github.com/russross/meddler
|
||
|
|
||
|
package meddler
|