mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-24 17:02:55 +08:00
22 lines
364 B
Python
22 lines
364 B
Python
"""Analysis Configs
|
|
This file is part of Felicity LIMS Software
|
|
"""
|
|
|
|
|
|
class ActionObjects:
|
|
SAMPLE = "SAMPLE"
|
|
ANALYSIS_RESULT = "ANALYSIS_RESULT"
|
|
WORKSHEET = "WORKSHEET"
|
|
REPORT = "REPORT"
|
|
|
|
|
|
action_objects = ActionObjects()
|
|
|
|
|
|
class Channels:
|
|
ACTIVITIES = "activities"
|
|
NOTIFICATIONS = "notifications"
|
|
JOBS = "jobs"
|
|
|
|
|
|
channels = Channels()
|