mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2025-01-10 15:00:03 +01:00
16 lines
290 B
Python
16 lines
290 B
Python
|
from frontendBuilder import FrontendBuilder
|
||
|
import shutil
|
||
|
|
||
|
class DeltaBuilder(FrontendBuilder):
|
||
|
|
||
|
def name(self):
|
||
|
return "/delta builder"
|
||
|
|
||
|
def projectResourceTypes (self):
|
||
|
return ['js', 'css']
|
||
|
|
||
|
def copyStaticResources (self, targetFolder):
|
||
|
pass
|
||
|
|
||
|
def bookmarklet (self):
|
||
|
return ""
|