mirror of
https://github.com/quantum5/win2xcur.git
synced 2025-08-09 01:59:34 -04:00
11 lines
255 B
Python
11 lines
255 B
Python
from win2xcur.writer.windows import to_ani, to_cur, to_smart
|
|
from win2xcur.writer.x11 import to_x11
|
|
|
|
__all__ = ['to_ani', 'to_cur', 'to_smart', 'to_x11']
|
|
|
|
CONVERTERS = {
|
|
'x11': (to_x11, ''),
|
|
'ani': (to_ani, '.ani'),
|
|
'cur': (to_cur, '.cur'),
|
|
}
|