File tree 1 file changed +13
-13
lines changed
1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
- import statsCard from ' ./api/index.js'
2
- import repoCard from ' ./api/pin.js'
3
- import langCard from ' ./api/top-langs.js'
4
- import wakatimeCard from ' ./api/wakatime.js'
5
- import express from ' express'
6
- import dotenv from ' dotenv'
1
+ import statsCard from " ./api/index.js" ;
2
+ import repoCard from " ./api/pin.js" ;
3
+ import langCard from " ./api/top-langs.js" ;
4
+ import wakatimeCard from " ./api/wakatime.js" ;
5
+ import express from " express" ;
6
+ import dotenv from " dotenv" ;
7
7
8
- dotenv . config ( )
9
- const app = express ( )
10
- app . listen ( process . env . port || 9000 )
8
+ dotenv . config ( ) ;
9
+ const app = express ( ) ;
10
+ app . listen ( process . env . port || 9000 ) ;
11
11
12
- app . get ( '/' , statsCard )
13
- app . get ( ' /pin' , repoCard )
14
- app . get ( ' /top-langs' , langCard )
15
- app . get ( ' /wakatime' , wakatimeCard )
12
+ app . get ( "/" , statsCard ) ;
13
+ app . get ( " /pin" , repoCard ) ;
14
+ app . get ( " /top-langs" , langCard ) ;
15
+ app . get ( " /wakatime" , wakatimeCard ) ;
You can’t perform that action at this time.
0 commit comments