mirror of
https://github.com/1C-Company/docker_fresh.git
synced 2025-01-07 23:01:44 +02:00
10 lines
192 B
Python
10 lines
192 B
Python
import modules.helper as helper
|
|
class New():
|
|
|
|
name = ''
|
|
commands_before = []
|
|
commands_after = []
|
|
|
|
def __init__(self):
|
|
self.name = 'db'
|
|
self.commands_before = [] |