Hypercode/alex/hypercodePublic

Code

  1. hypercode
  2. database
  3. models
  4. contributor.go
contributor.go10 lines
package models

type Contributor struct {
	ID           int64
	RepositoryID int64
	UserID       int64
	Role         string
	CreatedAt    int64
}