You've already forked example-public-integrations
mirror of
https://github.com/netbirdio/example-public-integrations.git
synced 2026-05-22 17:09:16 -07:00
10 lines
143 B
Go
10 lines
143 B
Go
package integrations
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func PrintName() {
|
|
log.Infof("This is the public integrations package")
|
|
}
|