mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-24 14:54:03 +00:00
23 lines
404 B
Go
23 lines
404 B
Go
package api
|
|
|
|
import (
|
|
gohttp "net/http"
|
|
|
|
"github.com/gorilla/pat"
|
|
"github.com/mailhog/MailHog-Server/config"
|
|
)
|
|
|
|
func CreateAPI(conf *config.Config, r gohttp.Handler) {
|
|
apiv1 := createAPIv1(conf, r.(*pat.Router))
|
|
apiv2 := createAPIv2(conf, r.(*pat.Router))
|
|
|
|
go func() {
|
|
for {
|
|
select {
|
|
case msg := <-conf.MessageChan:
|
|
apiv1.messageChan <- msg
|
|
apiv2.messageChan <- msg
|
|
}
|
|
}
|
|
}()
|
|
}
|