Skip to content

Commit 9844e79

Browse files
domain changes
1 parent 3ad21a9 commit 9844e79

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

license

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) William Horning <hey@williamhorning.dev> and contributors
1+
Copyright (c) William Horning and contributors
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the “Software”), to deal in

packages/lightning/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
lightning is a typescript-based chatbot that supports bridging multiple chat
44
apps via plugins
55

6-
## [docs](https://williamhorning.dev/bolt)
6+
## [docs](https://williamhorning.eu.org/bolt)
77

88
## example config
99

1010
```ts
1111
import type { config } from 'jsr:@jersey/lightning@0.7.1';
12-
import { discord_plugin } from 'https://williamhorning.dev/bolt/x/bolt-discord/0.7.1/mod.ts';
12+
import { discord_plugin } from 'https://williamhorning.eu.org/bolt/x/bolt-discord/0.7.1/mod.ts';
1313

1414
export default {
1515
redis_host: 'localhost',

packages/lightning/src/cmds.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const default_cmds = [
77
name: 'help',
88
description: 'get help',
99
execute: () =>
10-
'check out [the docs](https://williamhorning.dev/bolt/) for help.',
10+
'check out [the docs](https://williamhorning.eu.org/bolt/) for help.',
1111
},
1212
],
1313
[

packages/lightning/src/errors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export async function log_error(
4040
console.error(e, extra);
4141

4242
const message = create_message(
43-
`Something went wrong! [Look here](https://williamhorning.dev/bolt) for help.\n\`\`\`\n${e.message}\n${uuid}\n\`\`\``,
43+
`Something went wrong! [Look here](https://williamhorning.eu.org/bolt) for help.\n\`\`\`\n${e.message}\n${uuid}\n\`\`\``,
4444
);
4545

4646
return { e, uuid, extra, message };

packages/lightning/src/messages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export function create_message(text: string): message {
66
const data = {
77
author: {
88
username: 'lightning',
9-
profile: 'https://williamhorning.dev/assets/lightning.png',
9+
profile: 'https://williamhorning.eu.org/assets/lightning.png',
1010
rawname: 'lightning',
1111
id: 'lightning',
1212
},

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
lightning is a typescript-based chatbot that supports bridging multiple chat
44
apps via plugins. this repo contains lightning and some of the plugins used in
5-
bolt. to learn more, take a look at the [docs](https://williamhorning.dev/bolt)
5+
bolt. to learn more, take a look at the [docs](https://williamhorning.eu.org/bolt)

0 commit comments

Comments
 (0)