epita-std
/
ACU
Archived
1
0
Fork 0
This repository has been archived on 2021-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
ACU/commands/project/create.pl

19 lines
203 B
Perl

#! /usr/bin/env perl
use v5.10.1;
use strict;
use warnings;
use ACU::API::Base;
use ACU::API::Projects;
if ($#ARGV == 0)
{
API::Projects::add($ARGV[0], "");
}
else
{
say "$0 <project_id>";
}