You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/consul/mod.rs
+21-4Lines changed: 21 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,28 @@ pub struct Consul {
28
28
}
29
29
30
30
implConsul{
31
-
// not having docs here is currently allowed to address the missing docs problem one place at a time. Helping us by documenting just one of these places helps other devs tremendously
/// Passes a JSON string of configuration options to the Consul agent
32
+
///
33
+
/// For details on which options are avalible, please see [the consul docs](https://developer.hashicorp.com/consul/docs/reference/agent/configuration-file).
34
+
///
35
+
/// # Example
36
+
/// ```
37
+
/// use testcontainers_modules::{consul, testcontainers::runners::SyncRunner};
0 commit comments