about summary refs log tree commit diff
path: root/lib/model.go
blob: c8538fa46667e6c1e03ca424511aacf42fb34b0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package lib

import "time"

type File struct {
	Id            string    `db:"id"`
	User_id       string    `db:"user_id"`
	Absolute_path string    `db:"absolute_path"`
	Contents      string    `db:"contents"`
	Timestamp     time.Time `db:"timestamp"`
}