mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-07 19:21:30 +00:00
21 lines
480 B
TypeScript
21 lines
480 B
TypeScript
import { println } from "../src/utils/base";
|
|
import { kBannerASCII } from "../src/utils/string";
|
|
import { testDB } from "./db";
|
|
import { testSpeaker } from "./speaker";
|
|
import { testOpenAI } from "./openai";
|
|
import { testMyBot } from "./bot";
|
|
import { testLog } from "./log";
|
|
import { testMiGPT } from "./migpt";
|
|
|
|
async function main() {
|
|
// println(kBannerASCII);
|
|
// testDB();
|
|
// testSpeaker();
|
|
// testOpenAI();
|
|
// testMyBot();
|
|
// testLog();
|
|
testMiGPT();
|
|
}
|
|
|
|
main();
|