mirror of
https://github.com/actix/actix-website
synced 2024-11-23 16:31:08 +01:00
49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
|
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',
|
||
|
],
|
||
|
'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/'
|
||
|
}
|
||
|
],
|
||
|
},
|
||
|
};
|