mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-30 18:22:48 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			299 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			299 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Plugins
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface IServerEntryPoint
 | |
|     /// </summary>
 | |
|     public interface IServerEntryPoint : IDisposable
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Runs this instance.
 | |
|         /// </summary>
 | |
|         void Run();
 | |
|     }
 | |
| }
 |