Skip to content

Commit

Permalink
make ci happy
Browse files Browse the repository at this point in the history
  • Loading branch information
realjoshuau committed Nov 22, 2023
1 parent e301ebc commit 1ea62b9
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/mobile/app/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @ts-nocheck
// import { HomeIcon, HomeScreen } from '@acme/feature-home';
import { BarCodeScanner } from 'expo-barcode-scanner';
import { useEffect, useState } from 'react';
Expand Down
5 changes: 5 additions & 0 deletions apps/web/app/api/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Empty route file
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ time: new Date().toISOString() });
}
5 changes: 5 additions & 0 deletions apps/web/app/api/v0/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Empty route file
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ time: new Date().toISOString() });
}
5 changes: 5 additions & 0 deletions apps/web/app/api/v0/scouting/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// Empty route file
import { NextResponse } from 'next/server';
export async function GET() {
return NextResponse.json({ time: new Date().toISOString() });
}

0 comments on commit 1ea62b9

Please sign in to comment.