summaryrefslogtreecommitdiffstats
path: root/extensions/example/lib/WSExample.pm
blob: 05975b874baace02f48c18042c7dbd360843a9ce (plain)
1
2
3
4
5
6
7
8
9
10
package extensions::example::lib::WSExample;
use strict;
use warnings;

use base qw(Bugzilla::WebService);

# This can be called as Example.hello() from XML-RPC.
sub hello { return 'Hello!'; }

1;