Files
password-manager-mirror/scripts/builder/pythonBuilder.py
T

15 lines
216 B
Python

#!/usr/bin/python
# -*- coding: UTF-8 -*-
from backendBuilder import BackendBuilder
class PythonBuilder(BackendBuilder):
def name(self):
return "Python builder"
def relativePath(self):
return 'python'