mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-19 21:37:57 +08:00
13 lines
291 B
Python
13 lines
291 B
Python
# Released under the MIT License. See LICENSE for details.
|
|
#
|
|
"""Functionality for updating/checking the project"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from batools.project._updater import ProjectUpdater, project_centric_path
|
|
|
|
__all__ = [
|
|
'ProjectUpdater',
|
|
'project_centric_path',
|
|
]
|