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