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/gen_groups.pl
2013-09-12 12:55:18 +02:00

21 lines
225 B
Perl

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