Skip to content

Commit

Permalink
domain changes
Browse files Browse the repository at this point in the history
  • Loading branch information
williamhorning committed Jul 11, 2024
1 parent 3ad21a9 commit 9844e79
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion license
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) William Horning <[email protected]> and contributors
Copyright (c) William Horning and contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the “Software”), to deal in
Expand Down
4 changes: 2 additions & 2 deletions packages/lightning/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
lightning is a typescript-based chatbot that supports bridging multiple chat
apps via plugins

## [docs](https://williamhorning.dev/bolt)
## [docs](https://williamhorning.eu.org/bolt)

## example config

```ts
import type { config } from 'jsr:@jersey/[email protected]';
import { discord_plugin } from 'https://williamhorning.dev/bolt/x/bolt-discord/0.7.1/mod.ts';
import { discord_plugin } from 'https://williamhorning.eu.org/bolt/x/bolt-discord/0.7.1/mod.ts';

export default {
redis_host: 'localhost',
Expand Down
2 changes: 1 addition & 1 deletion packages/lightning/src/cmds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const default_cmds = [
name: 'help',
description: 'get help',
execute: () =>
'check out [the docs](https://williamhorning.dev/bolt/) for help.',
'check out [the docs](https://williamhorning.eu.org/bolt/) for help.',
},
],
[
Expand Down
2 changes: 1 addition & 1 deletion packages/lightning/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export async function log_error(
console.error(e, extra);

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

return { e, uuid, extra, message };
Expand Down
2 changes: 1 addition & 1 deletion packages/lightning/src/messages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function create_message(text: string): message {
const data = {
author: {
username: 'lightning',
profile: 'https://williamhorning.dev/assets/lightning.png',
profile: 'https://williamhorning.eu.org/assets/lightning.png',
rawname: 'lightning',
id: 'lightning',
},
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

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

0 comments on commit 9844e79

Please sign in to comment.