blob: 2c147f9e4f76e25d1d440390577a013c0b9639fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package AlgaOS::Installer::Util;
use v5.40.0;
use strict;
use warnings;
use JSON qw/from_json to_json/;
use Exporter 'import';
our @EXPORT = qw(to_json_packet to_json from_json);
sub to_json_packet($packet) {
return to_json($packet) . "\n";
}
1;
|