forked from actix/actix-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebars.js
45 lines (45 loc) · 1007 Bytes
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module.exports = {
docs: {
Introduction: ['welcome', 'whatis'],
Basics: [
'getting-started',
'application',
'server',
'extractors',
'handlers',
],
Advanced: [
'errors',
'url-dispatch',
'request',
'response',
'testing',
'middleware',
'static-files',
],
Protocols: ['websockets', 'http2'],
Patterns: ['autoreload', 'databases'],
Diagrams: ['http_server_init', 'conn_lifecycle'],
Actix: [
'actix/sec-0-quick-start',
'actix/sec-1-getting-started',
'actix/sec-2-actor',
'actix/sec-3-address',
'actix/sec-4-context',
'actix/sec-5-arbiter',
'actix/sec-6-sync-arbiter',
],
'API Documentation': [
{
type: 'link',
label: 'actix',
href: 'https://docs.rs/actix/latest/actix/',
},
{
type: 'link',
label: 'actix-web',
href: 'https://docs.rs/actix-web/latest/actix_web/',
},
],
},
};