Skip to content

Commit cf9b2d9

Browse files
Paulo Cabralwaldyrious
authored andcommitted
Use consistent and explicit names for source files
1 parent 4996c47 commit cf9b2d9

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

authentication/oauth-client-credentials/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Dependencies.
33
*/
44

5-
import { getUserInfo, getAccessToken } from "./cc-flow.js";
5+
import { getUserInfo, getAccessToken } from "./client-credentials-flow.js";
66
import fs from "fs";
77

88
(async () => {

authentication/personal-access-token/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Dependencies.
33
*/
44

5-
import { createNewPAT, getAuthenticationMethods, getUserPATs } from "./cc-pat.js";
5+
import { createNewPAT, getAuthenticationMethods, getUserPATs } from "./personal-access-token.js";
66
import fs from "fs";
77

88
(async () => {

transactions/user-to-user-transaction/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Dependencies.
33
*/
44

5-
import { createAndCommitTransaction, getCardWithFunds } from "./ct-transaction.js";
5+
import { createAndCommitTransaction, getCardWithFunds } from "./user-to-user-transaction.js";
66
import fs from "fs";
77

88
(async () => {

0 commit comments

Comments
 (0)