mirror of
https://github.com/theoleuthardt/werkzeugkiste.git
synced 2026-06-13 09:37:53 +00:00
feat: word-counter fully implemented + lower case revision
This commit is contained in:
parent
ccca78cec0
commit
8cf282e127
7 changed files with 148 additions and 7 deletions
|
|
@ -6,6 +6,7 @@ import { colorConvert } from "./src/routes/colorconvert.route";
|
|||
import { passwordGenerate } from "./src/routes/passwordgenerate.route";
|
||||
import { regexTest } from "./src/routes/regextest.route";
|
||||
import { tmzConvert } from "./src/routes/tmzconvert.route";
|
||||
import { wordCounter } from "./src/routes/wordcounter.route";
|
||||
|
||||
const app = Fastify({ logger: true });
|
||||
|
||||
|
|
@ -21,6 +22,7 @@ app.register(colorConvert);
|
|||
app.register(passwordGenerate);
|
||||
app.register(regexTest);
|
||||
app.register(tmzConvert);
|
||||
app.register(wordCounter);
|
||||
|
||||
const PORT = process.env.PORT || 4000;
|
||||
app.listen({ port: Number(PORT), host: "0.0.0.0" }, () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue