win2xcur/win2xcur/writer/__init__.py

11 lines
255 B
Python
Raw Normal View History

from win2xcur.writer.windows import to_ani, to_cur, to_smart
2020-09-26 18:14:55 -04:00
from win2xcur.writer.x11 import to_x11
__all__ = ['to_ani', 'to_cur', 'to_smart', 'to_x11']
2020-09-26 18:14:55 -04:00
CONVERTERS = {
'x11': (to_x11, ''),
'ani': (to_ani, '.ani'),
'cur': (to_cur, '.cur'),
2020-09-26 18:14:55 -04:00
}