| 
									
										
										
										
											2022-08-23 00:11:45 +08:00
										 |  |  | package pfs | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import "errors" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrEmptyFS indicates that the fs.FS provided to ParsePluginFS was empty.
 | 
					
						
							|  |  |  | var ErrEmptyFS = errors.New("provided fs.FS is empty") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrNoRootFile indicates that no root plugin.json file exists.
 | 
					
						
							|  |  |  | var ErrNoRootFile = errors.New("no plugin.json at root of fs.fS") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // ErrInvalidRootFile indicates that the root plugin.json file is invalid.
 | 
					
						
							|  |  |  | var ErrInvalidRootFile = errors.New("plugin.json is invalid") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-20 17:41:35 +08:00
										 |  |  | // ErrInvalidGrafanaPluginInstance indicates a plugin's set of .cue
 | 
					
						
							|  |  |  | // grafanaplugin package files are invalid with respect to the GrafanaPlugin
 | 
					
						
							|  |  |  | // spec.
 | 
					
						
							|  |  |  | var ErrInvalidGrafanaPluginInstance = errors.New("grafanaplugin cue instance is invalid") | 
					
						
							| 
									
										
										
										
											2022-09-14 22:15:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-23 00:11:45 +08:00
										 |  |  | // ErrInvalidLineage indicates that the plugin contains an invalid lineage
 | 
					
						
							|  |  |  | // declaration, according to Thema's validation rules in
 | 
					
						
							|  |  |  | // ["github.com/grafana/thema".BindLineage].
 | 
					
						
							|  |  |  | var ErrInvalidLineage = errors.New("invalid lineage") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-20 17:41:35 +08:00
										 |  |  | // ErrDisallowedCUEImport indicates that a plugin's grafanaplugin cue package
 | 
					
						
							|  |  |  | // contains that are not on the allowlist.
 | 
					
						
							| 
									
										
										
										
											2022-08-23 00:11:45 +08:00
										 |  |  | var ErrDisallowedCUEImport = errors.New("CUE import is not allowed") |