Initial commit

This commit is contained in:
2024-01-25 17:13:10 -05:00
committed by GitHub
commit 79dccc9709
12 changed files with 215 additions and 0 deletions

7
variables.js Normal file
View File

@@ -0,0 +1,7 @@
module.exports = async function (self) {
self.setVariableDefinitions([
{ variableId: 'variable1', name: 'My first variable' },
{ variableId: 'variable2', name: 'My second variable' },
{ variableId: 'variable3', name: 'Another variable' },
])
}