From 071cdacabfaa8cd7e29413f8851ae5ba8217369b Mon Sep 17 00:00:00 2001 From: pajama-coder Date: Sun, 19 May 2024 11:51:01 +0800 Subject: [PATCH] Moved agent/src/*.js back to agent/ --- agent/{src => }/api.js | 0 agent/{src => }/db.js | 0 agent/main.js | 6 +++--- agent/{src => }/mesh.js | 0 agent/{src => }/options.js | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename agent/{src => }/api.js (100%) rename agent/{src => }/db.js (100%) rename agent/{src => }/mesh.js (100%) rename agent/{src => }/options.js (100%) diff --git a/agent/src/api.js b/agent/api.js similarity index 100% rename from agent/src/api.js rename to agent/api.js diff --git a/agent/src/db.js b/agent/db.js similarity index 100% rename from agent/src/db.js rename to agent/db.js diff --git a/agent/main.js b/agent/main.js index 2c81750b..1d01426c 100755 --- a/agent/main.js +++ b/agent/main.js @@ -1,8 +1,8 @@ #!/usr/bin/env -S pipy --args -import api from './src/api.js' -import db from './src/db.js' -import options from './src/options.js' +import api from './api.js' +import db from './db.js' +import options from './options.js' var opt = options(pipy.argv, { defaults: { diff --git a/agent/src/mesh.js b/agent/mesh.js similarity index 100% rename from agent/src/mesh.js rename to agent/mesh.js diff --git a/agent/src/options.js b/agent/options.js similarity index 100% rename from agent/src/options.js rename to agent/options.js