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
use Future;
use Pin;
use crateAppRef;
use crateRokError;
/// A service provider registers services, config, and bindings into the
/// application container.
///
/// Analogous to Laravel service providers or AdonisJS providers.
///
/// # Built-in providers
///
/// | Crate | Provider |
/// |-------|----------|
/// | `rok-orm` | `OrmServiceProvider` |
/// | `rok-auth` | `AuthServiceProvider` |
/// | `rok-mail` | `MailServiceProvider` |
/// | `rok-cache` | `CacheServiceProvider` |
/// | `rok-queue` | `QueueServiceProvider` |
/// | `rok-storage` | `StorageServiceProvider` |
/// | `rok-notification` | `NotificationServiceProvider` |