aboutsummaryrefslogtreecommitdiff
path: root/src/user/user.go
blob: 83e39e32992633fe850ddd55871d7098d8157c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package user

import (
	"errors"
	"time"
)

type User struct {
	Id        int64
	Username  string
	Karma     uint64
	UpdatedAt time.Time
	CreatedAt time.Time
}

func NewUser(username, secret string) error {
	return errors.New("Not Implemented")
}