RegisterEmbeds is used internally by generated code and should not be called directly.
(assetsFilesystem fs.FS, staticFilesystem fs.FS, manifest []byte)
| 136 | |
| 137 | // RegisterEmbeds is used internally by generated code and should not be called directly. |
| 138 | func RegisterEmbeds(assetsFilesystem fs.FS, staticFilesystem fs.FS, manifest []byte) { |
| 139 | client := engine.GetDefaultClient() |
| 140 | client.AssetsFS = assetsFilesystem |
| 141 | client.StaticFS = staticFilesystem |
| 142 | client.ManifestFileBytes = manifest |
| 143 | } |
| 144 | |
| 145 | // DeepCopy creates a deep copy of the input value using JSON marshal/unmarshal. |
| 146 | // Panics on JSON errors. |
nothing calls this directly
no test coverage detected