refactor: upload temp
All checks were successful
/ deploy_site (push) Successful in 1m56s

This commit is contained in:
2024-10-26 17:57:34 +09:00
parent aa4cfabe11
commit beba067305
34 changed files with 3030 additions and 307 deletions

View File

@ -0,0 +1,6 @@
import { Transform } from "./Transform";
export const Base64DecodeTransform: Transform = {
name: 'base64d',
fn: () => 'Hello, world!'
}

View File

@ -0,0 +1,12 @@
import { Base64DecodeTransform } from "./Base64DecodeTransform"
export interface Transform {
name: string
fn: () => string
}
export const transforms: Transform[] = [
Base64DecodeTransform,
Base64DecodeTransform,
Base64DecodeTransform,
]