From 69de14b65e25a9aa0e197e1908923c73d432553e Mon Sep 17 00:00:00 2001 From: SveeJ <62150721+SveeJ@users.noreply.github.com> Date: Fri, 5 Feb 2021 00:33:06 +0530 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 072842c..6963de8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The adapter is a direct stateless interface with Challonge, with no frills, you' ### Example - Retrieving a list of tournaments with the TournamentAdapter The following returns the direct raw response from the Challonge API ``` -import { TournamentAdapter } from 'challonge-ts'; +import { TournamentAdapter } from '@nuel/challonge-ts'; const test = async () => { const data = await TournamentAdapter.index('api_key'); @@ -28,7 +28,7 @@ Devised as a nicer abstraction over the adapter, this is a set of classes which ### Example - Retrieving a list of tournaments with the Challonge class ``` -import { Challonge } from 'challonge-ts'; +import { Challonge } from '@nuel/challonge-ts'; const test = async () => { const challonge = new Challonge('api_key') @@ -52,4 +52,4 @@ To regenerate the API nock files, delete the `tests/adapter/__nock-fixtures__` f Ensure you have `gulp-cli` installed locally, then run `npm run build`. Hopefully it goes all right with no errors! :) ## Merging with master -After you have run the tests, and built the project, your repo should be good to go for merging with master! \ No newline at end of file +After you have run the tests, and built the project, your repo should be good to go for merging with master!