Archived
1
0
Fork 0
This repository has been archived on 2021-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ACU/commands/project/create.pl
2014-01-14 00:58:44 +01:00

18 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>";
}