Hacker News new | ask | show | jobs
by helper 3585 days ago
I don't want to run it in an external process, I want to run it in a goroutine.
1 comments

For that you can just do

```

package main

import minio "github.com/minio/minio/cmd"

func main() {

        go minio.Main()

        ... do your stuff ...
}

```