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