NAME
Net::LineNotify - A simple wrapper for LINE Notify API
SYNOPSIS
use Net::LineNotify;
my $line = Net::LineNotify->new(access_token => 'YOUR_ACCESS_TOKEN');
$line->send_message('Hello from Perl!');
DESCRIPTION
Net::LineNotify is a simple Perl wrapper for sending notifications via the LINE Notify API.
METHODS
new
my $line = Net::LineNotify->new(access_token => 'YOUR_ACCESS_TOKEN');
Creates a new Net::LineNotify object. Requires an access token for authentication.
send_message
$line->send_message('Hello!');
Sends a message to the LINE account associated with the access token.
AUTHOR
Your Name <your.email@example.com>
LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.