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: README.md
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,19 @@ Facts are the nuggets of information that will be provided by facter e.g. `os.na
40
40
Resolvers have the role of gathering data from the system.
41
41
For example a resolver can execute a command on the system, can read a file or any operation that retrieves some data from a single source on the system.
42
42
43
-

43
+
```mermaid
44
+
sequenceDiagram
45
+
participant user
46
+
participant framework
47
+
participant fact
48
+
participant resolver
49
+
user->>framework: user query
50
+
framework->>fact: create
51
+
fact->>resolver: resolve
52
+
resolver->>fact: system information
53
+
fact->>framework: fact value
54
+
framework->>user: formatted user output
55
+
````
44
56
45
57
## Getting started
46
58
After cloning the project, run `bundle install` to install all dependencies.
0 commit comments