8 lines
142 B
Python
8 lines
142 B
Python
|
from SVGExporter import *
|
||
|
from ImageExporter import *
|
||
|
Exporters = [SVGExporter, ImageExporter]
|
||
|
|
||
|
def listExporters():
|
||
|
return Exporters[:]
|
||
|
|