| 16 | } |
| 17 | |
| 18 | type Framework interface { |
| 19 | // Detect returns true if this framework should be included |
| 20 | // Returns the framework name and version if detected |
| 21 | Detect() (string, error) |
| 22 | |
| 23 | // Supply installs the framework |
| 24 | Supply() error |
| 25 | |
| 26 | // Finalize performs final framework configuration |
| 27 | Finalize() error |
| 28 | } |
| 29 | |
| 30 | // Registry manages available frameworks |
| 31 | type Registry struct { |
no outgoing calls
no test coverage detected