Archived
1
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
Raw Normal View History

2013-09-06 07:47:14 +00:00
#! /usr/bin/env perl
use v5.10.1;
use strict;
use warnings;
use ACU::API::Base;
use ACU::API::Projects;
if ($#ARGV == 0)
{
2014-01-13 23:58:44 +00:00
API::Projects::add($ARGV[0], "");
2013-09-06 07:47:14 +00:00
}
else
{
say "$0 <project_id>";
}