/codes

Library with static codes for different cases to use in your code and prevent developers to keep project code base dry and simple.

Primary LanguageGo

codes

gopher-codes

About

Library with static codes for different cases to use in your code and prevent developers to keep project code base dry and simple.

List of codes categories

  • Linux
  • HTTP
  • GRPC
  • TCP/UDP ports

Usage

package main

import (
	"github.com/gonnafaraway/codes/linux"
	"os"
)

func main() {
	os.Exit(linux.WithError)
}