fist commit

This commit is contained in:
Guillaume "B.B." Van Hemmen 2024-08-07 10:43:19 +02:00
commit a27fca4dea
Signed by: GuillaumeHemmen
GPG key ID: 7921E64524F7EB35
17 changed files with 5033 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import { GluegunCommand } from 'gluegun'
const command: GluegunCommand = {
name: 'docker-volume-manager',
run: async (toolbox) => {
const { print } = toolbox
print.info('Welcome to your CLI')
},
}
module.exports = command