Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 916 Bytes

File metadata and controls

38 lines (31 loc) · 916 Bytes

Architecture overview

graph TB
  API(Rust API)
  UI((GUI Application))
  AFKWatcher(AFK Watcher)
  WindowWatcher(Window Watcher)
  BrowserWatcher(Browser Watcher)
  CalendarSynchronizer(Calendar Synchronizer)
  GGCalendar[[Google Calendar]]
  DB[(Storage)]
  RawMetricProcessor{{Raw Metric Processor}}
  Categorizer(Categorizer)
  Logger(Logger)
  3RD[External Service Driver]
  EventHandler{{Event Handler}}

  AFKWatcher --raw metrics--> RawMetricProcessor
  WindowWatcher --raw metrics--> RawMetricProcessor
  BrowserWatcher --raw metrics--> RawMetricProcessor

  RawMetricProcessor --metrics--> EventHandler

  EventHandler --includes--> Categorizer 
  EventHandler --includes--> Logger
  EventHandler --includes--> 3RD

  CalendarSynchronizer --> GGCalendar
  GGCalendar --> CalendarSynchronizer

  API --> CalendarSynchronizer

  UI --> API
  Logger --> DB
  Categorizer --> DB
  API --> DB
Loading