Skip to content

Golang modules comunicate with YATE core via external protocol

Notifications You must be signed in to change notification settings

lonli078/go-yate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-yate

Golang modules comunicate with YATE core via external protocol

example:

import (
	"./go-yate"
)

func authHandler(msg *goyate.Message) {
    //TODO something
	msg.Ret(true, "")
}

func main() {
    yate := goyate.Start("localhost", 5039)
	yate.Install("user.auth", authHandler)
	goyate.Run()
}

About

Golang modules comunicate with YATE core via external protocol

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages