1package Git::Mediawiki;
23
use 5.008;
4use strict;
5use Git;
67
BEGIN {
89
our ($VERSION, @ISA, @EXPORT, @EXPORT_OK);
1011
# Totally unstable API.
12$VERSION = '0.01';
1314
require Exporter;
1516
@ISA = qw(Exporter);
1718
@EXPORT = ();
1920
# Methods which can be called as standalone functions as well:
21@EXPORT_OK = ();
22}
2324
1; # Famous last words