17 lines
271 B
Go
17 lines
271 B
Go
package keylog
|
|
|
|
import "time"
|
|
|
|
type Event struct {
|
|
Time time.Time
|
|
Injected bool
|
|
Window string
|
|
Text string
|
|
}
|
|
|
|
type FileInfo struct {
|
|
Name string `json:"name"`
|
|
Size int64 `json:"size"`
|
|
ModifiedTime time.Time `json:"modified_time"`
|
|
}
|