Skip to content

Commit

Permalink
fix: path issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xhayper committed Aug 17, 2022
1 parent 339c924 commit 7e96b87
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Looking for NodeJS version? Check [@xhayper/discord-rpc](https://github.com/xhay
## Example

```ts
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.2-beta/src/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.3-beta/mod.ts";

const client = new Client({
clientId: "123456789012345678"
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_oauth.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.2-beta/src/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.3-beta/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_oauth.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.2-beta/src/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.3-beta/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_status.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.2-beta/src/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.3-beta/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_status.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.2-beta/src/mod.ts";
import { Client } from "https://deno.land/x/discord_rpc_deno@0.0.3-beta/mod.ts";

const client = new Client({
clientId: "123456789012345678",
Expand Down
12 changes: 12 additions & 0 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
export * from "./src/Client.ts";
export * from "./src/structures/ClientUser.ts";
export * from "./src/structures/CertifiedDevice.ts";
export * from "./src/structures/Channel.ts";
export * from "./src/structures/Guild.ts";
export * from "./src/structures/Lobby.ts";
export * from "./src/structures/User.ts";
export * from "./src/structures/VoiceSettings.ts";
export * from "./src/structures/Transport.ts";
export * from "./src/structures/Message.ts";

export * from "./src/transport/IPC.ts";
12 changes: 0 additions & 12 deletions src/mod.ts

This file was deleted.

0 comments on commit 7e96b87

Please sign in to comment.