history.go
1package proto
2
3// File represents a file tracked in session history.
4type File struct {
5 ID string `json:"id"`
6 SessionID string `json:"session_id"`
7 Path string `json:"path"`
8 Content string `json:"content"`
9 Version int64 `json:"version"`
10 CreatedAt int64 `json:"created_at"`
11 UpdatedAt int64 `json:"updated_at"`
12}