Skip to content

Commit

Permalink
🚧 Add Abi home route
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Aug 25, 2024
1 parent 5056712 commit 55ad057
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion www/apps/backend/abi.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { Abi } from 'jsr:@abi-js/abi';

const abi = new Abi().handle('../frontend/dist/');
const abi = new Abi()
.get('', () => 'Welcome to Abi!')
.handle('../frontend/dist/');

export default abi;

0 comments on commit 55ad057

Please sign in to comment.