git-remote-mediawiki: update tests to run with the new bin-wrapper
[git] / contrib / mw-to-git / Git / Mediawiki.pm
1 package Git::Mediawiki;
2
3 use 5.008;
4 use strict;
5 use Git;
6
7 BEGIN {
8
9 our ($VERSION, @ISA, @EXPORT, @EXPORT_OK);
10
11 # Totally unstable API.
12 $VERSION = '0.01';
13
14 require Exporter;
15
16 @ISA = qw(Exporter);
17
18 @EXPORT = ();
19
20 # Methods which can be called as standalone functions as well:
21 @EXPORT_OK = ();
22 }
23
24 1; # Famous last words