Skip to content

Commit

Permalink
chore: rebrand + metadata fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirdukkk committed May 31, 2022
1 parent 87ab43d commit 4aeaabd
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Discordoo
Copyright (c) 2021 ddoodev

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<span> · </span>
<a href="https://ddoo.dev/prov">Docs</a>
<span> · </span>
<a href="https://github.com/Discordoo/guide/blob/develop/CONTRIBUTING.md">Contribute</a>
<a href="https://github.com/ddoodev/guide/blob/develop/CONTRIBUTING.md">Contribute</a>
</b>
</p>

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@discordoo/providers",
"version": "0.10.1",
"version": "0.10.2",
"description": "Interfaces that must be implemented by custom providers for Discordoo (typescript only).",
"main": "dist/index.js",
"types": "types/index.d.ts",
Expand All @@ -22,17 +22,17 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/Discordoo/providers.git"
"url": "git+https://github.com/ddoodev/providers.git"
},
"author": {
"name": "Mirdukkk",
"email": "dev@discordoo.xyz"
"email": "dev@ddoo.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Discordoo/providers/issues"
"url": "https://github.com/ddoodev/providers/issues"
},
"homepage": "https://github.com/Discordoo/providers#readme",
"homepage": "https://github.com/ddoodev/providers#readme",
"engines": {
"node": ">=12.18"
},
Expand Down
2 changes: 1 addition & 1 deletion src/cache/CacheProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { CacheStorageKey } from '@src/cache/CacheStorageKey'
*
* The provider must give the cache in the form in which it stores it and not try to serialize it into classes.
*
* @see https://github.com/Discordoo/discordoo/blob/develop/src/cache/DefaultCacheProvider.ts
* @see https://github.com/ddoodev/discordoo/blob/develop/src/cache/DefaultCacheProvider.ts
*/
export interface CacheProvider extends Provider {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/gateway/GatewayProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { GatewaySendPayloadLike } from '@src/gateway/GatewaySendPayloadLike'
*
* 4. Gateway [rate limits](https://discord.com/developers/docs/topics/gateway#rate-limiting) must be handled by the provider itself.
*
* @see https://github.com/Discordoo/discordoo/blob/develop/src/gateway/DefaultGatewayProvider.ts
* @see https://github.com/ddoodev/discordoo/blob/develop/src/gateway/DefaultGatewayProvider.ts
* */
export interface GatewayProvider extends Provider {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/rest/RestProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { Provider } from '@src/Provider'
*
* 2. Optionally can handle rate limits. Built-in rate limits handling can be disabled in the rest options.
*
* @see https://github.com/Discordoo/discordoo/blob/develop/src/rest/DefaultRestProvider.ts
* @see https://github.com/ddoodev/discordoo/blob/develop/src/rest/DefaultRestProvider.ts
* */
export interface RestProvider extends Provider {

Expand Down

0 comments on commit 4aeaabd

Please sign in to comment.