blob: be86378c5668fc0f277532a6d35207a8ecb1f8e0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package lib
import "time"
type File struct {
Id int `db:"id"`
User_id string `db:"user_id"`
Absolute_path string `db:"absolute_path"`
Contents string `db:"contents"`
Timestamp time.Time `db:"timestamp"`
}
|