Skip to content

Commit

Permalink
Source file headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Dec 24, 2023
1 parent 0e71cf7 commit 9f57ade
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 0 deletions.
4 changes: 4 additions & 0 deletions puppet/main.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppet/main.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/http;

import rheolaeth.crypt;
Expand Down
4 changes: 4 additions & 0 deletions puppet/modules/crypt/decrypt.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppet/modules/crypt/decrypt.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/crypto;
import ballerina/mime;

Expand Down
4 changes: 4 additions & 0 deletions puppet/modules/crypt/encrypt.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppet/modules/crypt/encrypt.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/crypto;

public isolated function aesEcbEncrypt(string key, string message) returns string | error {
Expand Down
4 changes: 4 additions & 0 deletions puppet/modules/response/response.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppet/modules/response/response.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/lang.regexp;

public isolated function errorResponse(string message) returns json {
Expand Down
4 changes: 4 additions & 0 deletions puppet/modules/shell/exec.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppet/modules/shell/exec.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/os;

public isolated function shellExecute(string script) returns string | error {
Expand Down
4 changes: 4 additions & 0 deletions puppetmaster/main.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppetmaster/main.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/io;
import rheolaeth.shell;

Expand Down
4 changes: 4 additions & 0 deletions puppetmaster/modules/crypt/decrypt.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppetmaster/modules/crypt/decrypt.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/crypto;
import ballerina/mime;

Expand Down
4 changes: 4 additions & 0 deletions puppetmaster/modules/net/carrier.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppetmaster/modules/net/carrier.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/http;
import ballerina/io;
import rheolaeth.crypt;
Expand Down
4 changes: 4 additions & 0 deletions puppetmaster/modules/shell/banner.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppetmaster/modules/shell/banner.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/io;

public function printPuppetMasterBanner() {
Expand Down
4 changes: 4 additions & 0 deletions puppetmaster/modules/shell/repl.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppetmaster/modules/shell/repl.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/io;
import rheolaeth.net;
import rheolaeth.util;
Expand Down
4 changes: 4 additions & 0 deletions puppetmaster/modules/util/input.bal
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Filename: puppetmaster/modules/util/input.bal
// Author: Nathanne Isip
// License: Mozilla Public License 2.0 (MPL-2.0)

import ballerina/io;
import ballerina/lang.regexp;

Expand Down

0 comments on commit 9f57ade

Please sign in to comment.