Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
75e8135
Updating README.md
NickTheDevOpsGuy Jan 13, 2026
1b5fa07
Fixing somet things
NickTheDevOpsGuy Jan 13, 2026
8be00d7
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 13, 2026
65c5407
Trying again
NickTheDevOpsGuy Jan 13, 2026
1318c80
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 13, 2026
72dfc91
Trying to fix this
NickTheDevOpsGuy Jan 13, 2026
1148584
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 13, 2026
81772d9
Trying again
NickTheDevOpsGuy Jan 13, 2026
95707d8
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 13, 2026
bf0976b
Fixing this up
NickTheDevOpsGuy Jan 13, 2026
b8370d2
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 13, 2026
c074148
Fixing this for once and all
NickTheDevOpsGuy Jan 13, 2026
916ede0
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 13, 2026
128a14f
Adding it in
NickTheDevOpsGuy Jan 13, 2026
60b70fa
Adding stuff in
NickTheDevOpsGuy Jan 13, 2026
8230420
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 13, 2026
fab360e
Fixing this up
NickTheDevOpsGuy Jan 14, 2026
87e6605
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 14, 2026
0caa866
Fixing this up
NickTheDevOpsGuy Jan 14, 2026
66602f8
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 14, 2026
e04da82
Adding this in
NickTheDevOpsGuy Jan 15, 2026
85994fc
Adding more in
NickTheDevOpsGuy Jan 15, 2026
2261dd0
style: auto-format with Prettier [skip-precheck]
NickTheDevOpsGuy Jan 15, 2026
5680fe8
Fixing this up
NickTheDevOpsGuy Jan 15, 2026
d84e20a
Fixing this up
NickTheDevOpsGuy Jan 15, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 7 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,31 +174,14 @@ OmegaBot is online
│ │ └── OmegaBot.yml
│ └── pull_request_template.md
├── .husky
│ ├── _
│ │ ├── .gitignore
│ │ ├── applypatch-msg
│ │ ├── commit-msg
│ │ ├── h
│ │ ├── husky.sh
│ │ ├── post-applypatch
│ │ ├── post-checkout
│ │ ├── post-commit
│ │ ├── post-merge
│ │ ├── post-rewrite
│ │ ├── pre-applypatch
│ │ ├── pre-auto-gc
│ │ ├── pre-commit
│ │ ├── pre-merge-commit
│ │ ├── pre-push
│ │ ├── pre-rebase
│ │ └── prepare-commit-msg
│ ├── pre-commit
│ └── pre-push
├── assets
│ ├── banner.png
│ └── omegabot.png
├── data
│ ├── faqs.json
│ ├── fun-usage.json
│ ├── github-assignees.json
│ ├── guild-config.json
│ ├── last-seen.json
Expand Down Expand Up @@ -231,6 +214,9 @@ OmegaBot is online
│ │ │ │ ├── coinflip.ts
│ │ │ │ ├── dadjoke.ts
│ │ │ │ ├── dice.ts
│ │ │ │ ├── java.ts
│ │ │ │ ├── leaderboard.ts
│ │ │ │ ├── poll.ts
│ │ │ │ └── weather.ts
│ │ │ └── fun.ts
│ │ ├── general
Expand Down Expand Up @@ -273,6 +259,9 @@ OmegaBot is online
│ │ │ ├── store.test.ts
│ │ │ ├── store.ts
│ │ │ └── types.ts
│ │ ├── fun
│ │ │ ├── funUsageStore.ts
│ │ │ └── pollStore.ts
│ │ ├── github
│ │ │ ├── githubApi.ts
│ │ │ ├── githubClient.ts
Expand Down Expand Up @@ -320,7 +309,6 @@ OmegaBot is online
├── package.json
├── README.md
├── tsconfig.json
└── vitest.config.ts

```

Expand Down
2 changes: 1 addition & 1 deletion src/commands/fun/fun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { run as runJava } from "./subcommands/java.js";
import { run as runLeaderboard } from "./subcommands/leaderboard.js";
import type { LeaderboardMode } from "./subcommands/leaderboard.js";

import { recordFunUsage, type FunCommandKey } from "./funUsageStore.js";
import { recordFunUsage, type FunCommandKey } from "../../services/fun/funUsageStore.js";

function parseTempUnit(raw: string | null): TempUnit {
return raw?.toLowerCase() === "c" ? "c" : "f";
Expand Down
128 changes: 0 additions & 128 deletions src/commands/fun/funUsageStore.ts

This file was deleted.

Loading