mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 09:50:27 +00:00
12 lines
151 B
Go
12 lines
151 B
Go
|
// +build !nosteam
|
||
|
|
||
|
package bridgemap
|
||
|
|
||
|
import (
|
||
|
bsteam "github.com/42wim/matterbridge/bridge/steam"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
FullMap["steam"] = bsteam.New
|
||
|
}
|