File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 1
1
import * as Categories from './route-handlers/categories' ;
2
2
import * as Crates from './route-handlers/crates' ;
3
+ import * as DocsRS from './route-handlers/docs-rs' ;
3
4
import * as Keywords from './route-handlers/keywords' ;
4
5
import * as Summary from './route-handlers/summary' ;
5
6
import * as Teams from './route-handlers/teams' ;
@@ -8,6 +9,7 @@ import * as Users from './route-handlers/users';
8
9
export default function ( ) {
9
10
Categories . register ( this ) ;
10
11
Crates . register ( this ) ;
12
+ DocsRS . register ( this ) ;
11
13
Keywords . register ( this ) ;
12
14
Summary . register ( this ) ;
13
15
Teams . register ( this ) ;
Original file line number Diff line number Diff line change
1
+ export function register ( server ) {
2
+ server . get ( 'https://docs.rs/crate/:crate/:version/builds.json' , function ( ) {
3
+ return [ ] ;
4
+ } ) ;
5
+ }
You can’t perform that action at this time.
0 commit comments