Categorygithub.com/dorzheh/go-dialog
repositorypackage
0.0.0-20160820100631-2ef8178be78e
Repository: https://github.com/dorzheh/go-dialog.git
Documentation: pkg.go.dev

# README

Build Status Coverage Status

go-dialog

go-dialog is a Go wrapper for the dialog utility originally written by Savio Lam, and later rewritten by Thomas E. Dickey.

Usage

package main

import (
	"fmt"
	"github.com/weldpua2008/go-dialog"	
)
func main() {
   d := dialog.New(dialog.AUTO, 0)
   d.Msgbox("Hello world!")
}

Installation

 go get "github.com/weldpua2008/go-dialog"

Contributors