This website requires JavaScript.
Explore
Help
Sign In
MyFavMirrors
/
minio
mirror of
https://github.com/minio/minio.git
Watch
1
Star
0
Fork
You've already forked minio
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
4e644a1f41
minio
/
main.go
8 lines
93 B
Go
Raw
Normal View
History
Unescape
Escape
Full restructure in accordance with - pkg/{subsystem}/{package} style - modify Makefile to reflect the new style, consolidate various entries - add a dummy ``main.go`` at top level
2015-01-14 14:29:04 -05:00
package
main
Adding initial web server and storage server module infrastructure
2015-01-18 16:31:22 -05:00
import
"github.com/minio-io/minio/pkg/server"
Full restructure in accordance with - pkg/{subsystem}/{package} style - modify Makefile to reflect the new style, consolidate various entries - add a dummy ``main.go`` at top level
2015-01-14 14:29:04 -05:00
func
main
(
)
{
Adding initial web server and storage server module infrastructure
2015-01-18 16:31:22 -05:00
server
.
Start
(
)
Full restructure in accordance with - pkg/{subsystem}/{package} style - modify Makefile to reflect the new style, consolidate various entries - add a dummy ``main.go`` at top level
2015-01-14 14:29:04 -05:00
}