mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
10 lines
235 B
Python
10 lines
235 B
Python
![]() |
"""
|
||
|
These commands, and sub-commands, are used by pre-commit.
|
||
|
"""
|
||
|
from ptscripts import command_group
|
||
|
|
||
|
# Define the command group
|
||
|
cgroup = command_group(
|
||
|
name="pre-commit", help="Pre-Commit Related Commands", description=__doc__
|
||
|
)
|