11 lines
201 B
Python
11 lines
201 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""Project package for NexusLauncher.
|
|
|
|
Exports the project management components.
|
|
"""
|
|
|
|
from .project_panel import ProjectPanel
|
|
|
|
__all__ = ["ProjectPanel"]
|