| 
									
										
										
										
											2021-04-19 03:41:13 +08:00
										 |  |  | // Copyright (c) 2015-2021 MinIO, Inc.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This file is part of MinIO Object Storage stack
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify
 | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by
 | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or
 | 
					
						
							|  |  |  | // (at your option) any later version.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful
 | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
					
						
							|  |  |  | // GNU Affero General Public License for more details.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License
 | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							| 
									
										
										
										
											2016-11-17 08:23:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-05 09:25:30 +08:00
										 |  |  | package main // import "github.com/minio/minio"
 | 
					
						
							| 
									
										
										
										
											2015-01-15 03:29:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-27 07:22:41 +08:00
										 |  |  | import ( | 
					
						
							|  |  |  | 	"os" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-01 23:03:16 +08:00
										 |  |  | 	// MUST be first import.
 | 
					
						
							|  |  |  | 	_ "github.com/minio/minio/internal/init" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-27 07:22:41 +08:00
										 |  |  | 	minio "github.com/minio/minio/cmd" | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2015-12-07 06:31:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-21 04:05:47 +08:00
										 |  |  | func main() { | 
					
						
							| 
									
										
										
										
											2017-03-07 11:35:26 +08:00
										 |  |  | 	minio.Main(os.Args) | 
					
						
							| 
									
										
										
										
											2015-01-15 03:29:04 +08:00
										 |  |  | } |