This commit is contained in:
2025-11-14 20:43:59 +08:00
parent d1ba8bbab1
commit e35712820f
16 changed files with 606 additions and 14 deletions

14
agent/index.ts Normal file
View File

@@ -0,0 +1,14 @@
import {app} from './app.ts';
import './ip'
// app.listen(8080);
app.call({
path: 'ip',
key: 'v6'
}).then(res => {
console.log('IPv4 Address:', res);
})
export { app };