Skip to content

Commit

Permalink
Create enterprise_system.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 30, 2024
1 parent eaf832c commit 6f74dec
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions core/enterprise_system.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
class EnterpriseSystem:
def __init__(self, system_id, system_type):
self.system_id = system_id
self.system_type = system_type

def execute_task(self, task_id):
# Execute the task using the enterprise system
pass

0 comments on commit 6f74dec

Please sign in to comment.