mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2026-03-17 07:28:47 +01:00
15 lines
216 B
Python
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'
|
|
|
|
|