mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-11-04 11:49:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			551 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			551 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package core
 | 
						|
 | 
						|
// PluginMetadata contains some brief information regarding a plugin.
 | 
						|
type PluginMetadata struct {
 | 
						|
	// Name of the plugin
 | 
						|
	Name string
 | 
						|
}
 | 
						|
 | 
						|
// GetMetadataFuncName is the name of the function in the plugin to return PluginMetadata.
 | 
						|
const GetMetadataFuncName = "GetPluginMetadata"
 | 
						|
 | 
						|
// GetMetadataFunc is the type of the function in the plugin to return PluginMetadata.
 | 
						|
type GetMetadataFunc func() PluginMetadata
 | 
						|
 | 
						|
// LoadPlugins loads all possible plugins in the 'plugin' directory.
 | 
						|
func LoadPlugins() error {
 | 
						|
	return loadPluginsInternal()
 | 
						|
}
 |