import ( "github.com/globocom/tsuru/app" ) func main() { appName := "my-app" appInfo, err := app.Get(appName) if err != nil { panic(err) } // Use appInfo }This code example shows how to get the information of a Tsuru app named "my-app". The app.Get() function returns an App struct, which contains information about the app, such as its name, status, and units. The Tsuru app library is useful for developers who are building applications on the Tsuru platform. By using this library, developers can easily manage their Tsuru applications and automate common tasks.