diff options
Diffstat (limited to 'lib/extensions/about.py')
| -rw-r--r-- | lib/extensions/about.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/extensions/about.py b/lib/extensions/about.py new file mode 100644 index 00000000..f4ab233c --- /dev/null +++ b/lib/extensions/about.py @@ -0,0 +1,14 @@ +# Authors: see git history +# +# Copyright (c) 2023 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + +from ..gui.about import AboutInkstitchApp +from .base import InkstitchExtension + + +class About(InkstitchExtension): + + def effect(self): + app = AboutInkstitchApp() + app.MainLoop() |
