| Revision: | 1.1 |
| Committed: | Thu Jul 30 18:54:42 2020 UTC (5 years, 5 months ago) by root |
| Branch: | MAIN |
| CVS Tags: | HEAD |
| Log Message: | *** empty log message *** |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.1 | package Superluminal; |
| 2 | |||
| 3 | =head1 NAME | ||
| 4 | |||
| 5 | Superluminal - provisioning, deployment and generic task execution toolkit | ||
| 6 | |||
| 7 | =head1 SYNOPSIS | ||
| 8 | |||
| 9 | This is just a placeholder to reserve CPAN namespace. Stay tuned. | ||
| 10 | |||
| 11 | =head1 DESCRIPTION | ||
| 12 | |||
| 13 | =cut | ||
| 14 | |||
| 15 | use common::sense; | ||
| 16 | |||
| 17 | use Carp (); | ||
| 18 | use Errno (); | ||
| 19 | use Fcntl (); | ||
| 20 | use Scalar::Util (); | ||
| 21 | use Data::Dumper (); | ||
| 22 | |||
| 23 | use AnyEvent 7.18 (); | ||
| 24 | use AnyEvent::Handle (); | ||
| 25 | |||
| 26 | our $VERSION = 0.01; | ||
| 27 | |||
| 28 | 1 | ||
| 29 |