whatsapp-apiwhatsapprestgolanggowhatsapp-multi-devicewhatsapp-web-multi-devicewhatsapp-api-gorest-apigolang-whatsapp-apigolang-whatsappbot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
241 B
16 lines
241 B
package main
|
|
|
|
import (
|
|
"embed"
|
|
"github.com/aldinokemal/go-whatsapp-web-multidevice/cmd"
|
|
)
|
|
|
|
//go:embed views/index.html
|
|
var embedIndex embed.FS
|
|
|
|
//go:embed views
|
|
var embedViews embed.FS
|
|
|
|
func main() {
|
|
cmd.Execute(embedIndex, embedViews)
|
|
}
|