2017-06-05 16:02:39 +03:00
|
|
|
# Copyright (c) 2014-present PlatformIO <contact@platformio.org>
|
2015-11-18 17:16:17 +02:00
|
|
|
#
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
|
#
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
#
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
|
# limitations under the License.
|
2014-06-12 21:17:45 +03:00
|
|
|
|
2014-11-30 18:14:18 +02:00
|
|
|
import click
|
2014-06-12 21:17:45 +03:00
|
|
|
|
2022-05-14 13:41:20 +03:00
|
|
|
from platformio.project.commands.config import project_config_cmd
|
|
|
|
|
from platformio.project.commands.init import project_init_cmd
|
2022-05-15 16:57:27 +03:00
|
|
|
from platformio.project.commands.metadata import project_metadata_cmd
|
2014-06-12 21:17:45 +03:00
|
|
|
|
|
|
|
|
|
2022-05-14 13:41:20 +03:00
|
|
|
@click.group(
|
|
|
|
|
"project",
|
|
|
|
|
commands=[
|
|
|
|
|
project_config_cmd,
|
|
|
|
|
project_init_cmd,
|
2022-05-15 16:57:27 +03:00
|
|
|
project_metadata_cmd,
|
2022-05-14 13:41:20 +03:00
|
|
|
],
|
|
|
|
|
short_help="Project Manager",
|
|
|
|
|
)
|
2020-02-06 23:32:43 +02:00
|
|
|
def cli():
|
|
|
|
|
pass
|