7 lines
114 B
Python
7 lines
114 B
Python
def match(command):
|
|
return command.script == 'cargo'
|
|
|
|
|
|
def get_new_command(command):
|
|
return 'cargo build'
|