/openurl

Golang package for opening URLs in default web browser.

Primary LanguageGoMIT LicenseMIT

openurl

Build Status codecov

golang package for opening URLs in default web browser.

Usage

import (
  ...

  "github.com/stevenzack/openurl"
)

if err := openurl.Open("example.com"); err != nil {
  log.Fatal(err)
}