A: demo webrtc

This commit is contained in:
杨红岩 2023-06-09 08:57:40 +08:00
parent 47a28250a6
commit 267581efa0

View File

@ -0,0 +1,18 @@
package main
import (
"github.com/energye/energy/v2/cef"
)
func main() {
//全局初始化 每个应用都必须调用的
cef.GlobalInit(nil, nil)
//创建应用
cefApp := cef.NewApplication()
//指定一个URL地址或本地html文件目录
cef.BrowserWindow.Config.Url = "http://localhost:8083/"
//运行应用
cef.Run(cefApp)
// https://github.com/pion/webrtc
}