github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/mobile/example/libhello/main.go (about)

     1  // Copyright 2014 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // This is the Go entry point for the libhello app.
     6  // It is invoked from Java.
     7  //
     8  // See README for details.
     9  package main
    10  
    11  import (
    12  	"golang.org/x/mobile/app"
    13  
    14  	_ "golang.org/x/mobile/bind/java"
    15  	_ "golang.org/x/mobile/example/libhello/hi/go_hi"
    16  )
    17  
    18  func main() {
    19  	app.Run(app.Callbacks{})
    20  }