-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.jac
More file actions
41 lines (38 loc) · 842 Bytes
/
main.jac
File metadata and controls
41 lines (38 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import from service.mainAppService {
get_session_token,
init_user_graph,
update_task_graph,
get_task_graph,
clear_graph,
save_routine,
load_past_routines,
reset_session,
rebuild_graph,
rename_task,
call_manager,
get_activity_report,
get_trend_analysis,
analyze_behavioral_patterns,
calculate_productivity_metrics,
generate_insights,
log_activity_event,
discover_patterns,
get_temporal_insights,
get_comparative_insights,
create_goal,
get_goals,
update_goal_progress,
check_achievements,
get_achievements,
get_proactive_insights,
mark_insight_viewed,
mark_insight_acted_upon,
dismiss_insight,
}
cl import from .index { app as ClientApp }
cl {
def:pub app -> JsxElement {
return
<ClientApp/>;
}
}