Skip to content

Instantly share code, notes, and snippets.

@Bebbolus
Created November 30, 2018 16:42
Show Gist options
  • Save Bebbolus/db8eb057f107186ba2d659dbcb2df0bf to your computer and use it in GitHub Desktop.
Save Bebbolus/db8eb057f107186ba2d659dbcb2df0bf to your computer and use it in GitHub Desktop.
package main
import (
"os"
"fmt"
"plugin"
)
func main() {
//open plugin file
plug, err := plugin.Open("plugins/first.so")
if err != nil {
fmt.Println(err)
os.Exit(-1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment