2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-06 23:30:24 +00:00
2022-01-07 14:54:04 +11:00

17 lines
420 B
Python

"""
Sample plugin which supports task scheduling
"""
from plugin import IntegrationPluginBase
from plugin.mixins import ScheduleMixin
class ScheduledTaskPlugin(ScheduleMixin, IntegrationPluginBase):
"""
A sample plugin which provides support for scheduled tasks
"""
PLUGIN_NAME = "ScheduledTasksPlugin"
PLUGIN_SLUG = "schedule"
PLUGIN_TITLE = "A plugin which provides scheduled task support"