message.go 265 B

12345678910111213141516171819
  1. package session
  2. import "git.andreafazzi.eu/andrea/probo/pkg/store/file"
  3. type storeLoadedMsg struct {
  4. store *file.SessionFileStore
  5. }
  6. type resultMsg struct {
  7. result []any
  8. }
  9. type errorMsg struct {
  10. error error
  11. }
  12. type scriptExecutedMsg struct {
  13. result string
  14. }