mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 10:40:51 +00:00
9 lines
123 B
Python
9 lines
123 B
Python
#!/bin/env python
|
|
|
|
|
|
""" Class for Job Handling """
|
|
|
|
class Job:
|
|
|
|
def __init__(self, name):
|
|
self.__name__ = name
|