Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 581 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 581 Bytes

go-pg-django

Go Report Card GoDoc

Django models for Golang go-pg

Installation

go get -u github.com/tomi77/go-pg-django

Usage

import "github.com/tomi77/go-pg-django/auth"

type Tab struct {
  ID uint32

  AuthUserID uint32 `pg:",fk:AuthUser"`
  AuthUser   *auth.User
}