yeganathan18 / potato

Test and publish packages in golang pkg manager.

Home Page:https://pkg.go.dev/github.com/yeganathan18/potato

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Potato

Potato is a golang module that is intended for testing & publishing modules on pkg.go.dev

Installation

Use the package manager go get to install foobar.

go get github.com/yeganathan18/potato

Usage

import (
	"fmt"
	"log"

	"github.com/yeganathan18/potato"
)

message, err := potato.Hello('John')

// If an error was returned, print it to the console
if err != nil {
    log.Fatal(err)
}

// returns 'Hi, John. Welcome!'
fmt.Println(message)

Any Questions

If you have any questions or comments, please open an issue or open a pull request on this repository.

Feel free to use this is as a reference for creating your own modules and publish it on pkg.go.dev.

License

MIT

About

Test and publish packages in golang pkg manager.

https://pkg.go.dev/github.com/yeganathan18/potato

License:MIT License


Languages

Language:Go 100.0%