 9128ee0a91
			
		
	
	9128ee0a91
	
	
	
		
			
			NRI is still newer and mostly used by CRI plugin. Keep the package in internal to allow for interfaces as the project matures. Signed-off-by: Derek McGowan <derek@mcg.dev>
		
			
				
	
	
		
			53 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|    Copyright The containerd Authors.
 | |
| 
 | |
|    Licensed under the Apache License, Version 2.0 (the "License");
 | |
|    you may not use this file except in compliance with the License.
 | |
|    You may obtain a copy of the License at
 | |
| 
 | |
|        http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
|    Unless required by applicable law or agreed to in writing, software
 | |
|    distributed under the License is distributed on an "AS IS" BASIS,
 | |
|    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|    See the License for the specific language governing permissions and
 | |
|    limitations under the License.
 | |
| */
 | |
| 
 | |
| package fuzz
 | |
| 
 | |
| import (
 | |
| 	// base containerd imports
 | |
| 	_ "github.com/containerd/containerd/v2/core/runtime/v2"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/cri"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/cri/images"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/cri/runtime"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/diff/walking/plugin"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/events"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/gc"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/imageverifier"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/leases"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/metadata"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/nri"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/restart"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/sandbox"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/containers"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/content"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/diff"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/events"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/healthcheck"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/images"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/introspection"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/leases"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/namespaces"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/opt"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/sandbox"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/snapshots"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/streaming"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/tasks"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/transfer"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/services/version"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/streaming"
 | |
| 	_ "github.com/containerd/containerd/v2/plugins/transfer"
 | |
| )
 |