| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package event
- import (
- "time"
- )
- var appStartTime time.Time
- func AppInitialized() {
- appStartTime = time.Now()
- send("app initialized")
- }
- func AppExited() {
- duration := time.Since(appStartTime).Truncate(time.Second)
- send(
- "app exited",
- "app duration pretty", duration.String(),
- "app duration in seconds", int64(duration.Seconds()),
- )
- Flush()
- }
- func SessionCreated() {
- send("session created")
- }
- func SessionDeleted() {
- send("session deleted")
- }
- func SessionSwitched() {
- send("session switched")
- }
- func FilePickerOpened() {
- send("filepicker opened")
- }
- func PromptSent(props ...any) {
- send(
- "prompt sent",
- props...,
- )
- }
- func PromptResponded(props ...any) {
- send(
- "prompt responded",
- props...,
- )
- }
- func TokensUsed(props ...any) {
- send(
- "tokens used",
- props...,
- )
- }
|