-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
main.rs
60 lines (41 loc) · 1.27 KB
/
main.rs
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//! To progress in the workshop:
//! - Comment out the modules of this file one by one, starting from the module `greetings`.
//! - Run `cargo test` and solve the exercises of each module.
// #[path = "00_greetings.rs"]
// mod greetings;
// #[path = "00_logs.rs"]
// mod logs;
// #[path = "01_swapi_docker.rs"]
// mod swapi_docker;
// #[path = "02_swapi.rs"]
// mod swapi;
// #[path = "03_swapi_mock.rs"]
// mod swapi_mock;
// #[path = "04_swapi_tests_cleanup1.rs"]
// mod swapi_tests_cleanup1;
// #[path = "04_swapi_tests_cleanup2.rs"]
// mod swapi_tests_cleanup2;
// #[path = "04_swapi_tests_cleanup3.rs"]
// mod swapi_tests_cleanup3;
// #[path = "05_taller.rs"]
// mod taller;
// #[path = "06_taller_error.rs"]
// mod taller_error;
// #[path = "07_server_settings1.rs"]
// mod server_settings1;
// #[path = "07_server_settings2.rs"]
// mod server_settings2;
// #[path = "07_server_settings3.rs"]
// mod server_settings3;
// #[path = "08_health_check1.rs"]
// mod health_check1;
// #[path = "08_health_check2.rs"]
// mod health_check2;
// #[path = "08_taller_server1.rs"]
// mod taller_server1;
// #[path = "08_taller_server2.rs"]
// mod taller_server2;
// #[path = "08_taller_server3.rs"]
// mod taller_server3;
// #[path = "09_taller_server_error.rs"]
// mod taller_server_error;