Skip to content

Commit

Permalink
chore: rename lib
Browse files Browse the repository at this point in the history
  • Loading branch information
juangirini committed Oct 1, 2024
1 parent c878271 commit 6ce43d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"description": "A wrapper to interact with the Murmur API",
"license": "GPL-3.0",
"repository": "https://github.com/ideal-lab5/murmur.js",
"main": "src/index.ts",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ideal Labs <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import axios, { AxiosInstance } from "axios";

class ApiClient {
class MurmurClient {
private client: AxiosInstance;

constructor(baseURL: string) {
Expand Down Expand Up @@ -78,4 +78,4 @@ class ApiClient {
}
}

export default ApiClient;
export default MurmurClient;

0 comments on commit 6ce43d1

Please sign in to comment.