run method
Implementation
Future<void> run(
ArgParser parser,
List<String> arguments,
) async {
try {
final projectName = arguments.first;
await create(projectName);
} catch (e) {
ProgressStar.stop(msg: 'Comet Error');
print(e);
}
}