Files
GitJournal/go/cmd/import-url_launcher-plugin.go
Vishesh Handa 453fac784d Add hover code
This way the app can be built for desktop platforms. There is still a
lot of work to do in order to get it to work, but this is a start.

Related to #137
2020-05-31 09:07:29 +02:00

14 lines
395 B
Go

package main
// DO NOT EDIT, this file is generated by hover at compile-time for the url_launcher plugin.
import (
flutter "github.com/go-flutter-desktop/go-flutter"
url_launcher "github.com/go-flutter-desktop/plugins/url_launcher"
)
func init() {
// Only the init function can be tweaked by plugin maker.
options = append(options, flutter.AddPlugin(&url_launcher.UrlLauncherPlugin{}))
}