Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.
/ namegenerator Public archive
forked from goombaio/namegenerator

A random name generator (for projects, servers, cluster nodes, etc ...) implementation in Golang.

License

Notifications You must be signed in to change notification settings

acorn-io/namegenerator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

namegenerator

A random name generator for acorns (for acorns, or whatever) implementation in Golang.

Install

go get github.com/acorn-io/namegenerator

Example of use

package main

import (
    "github.com/goombaio/namegenerator"
)

func main() {
    seed := time.Now().UTC().UnixNano()
    nameGenerator := namegenerator.NewNameGenerator(seed)

    name := nameGenerator.Generate()

    fmt.Println(name)
}

License

Copyright (c) 2022 Acorn Labs, Inc.

Copyright (c) 2018 Goomba project Authors.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

A random name generator (for projects, servers, cluster nodes, etc ...) implementation in Golang.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%