Skip to content

Commit

Permalink
Merge pull request #665 from vselvarajijay/hexagonal
Browse files Browse the repository at this point in the history
initial debug call for a service request
  • Loading branch information
vselvarajijay authored Jun 8, 2024
2 parents 218a44a + cc386e4 commit 0e7abc7
Show file tree
Hide file tree
Showing 3 changed files with 2,850 additions and 2,329 deletions.
18 changes: 18 additions & 0 deletions apps/registry/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import {
useAuthenticator,
} from '@aws-amplify/ui-react';

import {AccountService} from '@akello/account';



interface AppProps {
Expand Down Expand Up @@ -43,6 +45,22 @@ const App:React.FC<AppProps> = () => {
return <>not authenticated</>
}

/////////////////////////
// DBUG - test the account service
const accountService = new AccountService()
accountService.getAccount(
"ACCESS_TOKEN",
"ACCOUNT_ID",
(data: any) => {
console.log(data);
},
(error: any) => {
console.log(error);
}
)
/////////////////////////


return (
<ThemeProvider theme={theme} colorMode={themeMode}>
<Routes>
Expand Down
Loading

0 comments on commit 0e7abc7

Please sign in to comment.