verdandi/mixins/assetsmixin.py

16 lines
251 B
Python
Raw Permalink Normal View History

2015-10-17 17:57:26 +02:00
#!/usr/bin/env python2
2016-01-09 02:13:08 +01:00
2015-10-17 17:57:26 +02:00
from verdandi.constants import CONTENT_DIRECTORY
class AssetsMixin(object):
2016-01-09 02:13:08 +01:00
2015-10-17 17:57:26 +02:00
assets = []
2016-01-09 02:13:08 +01:00
asset_directory = CONTENT_DIRECTORY
2015-10-17 17:57:26 +02:00
def get_assets(self):
return self.assets
def collect_assets(self, output_directory):
2016-04-23 00:15:49 +02:00
pass