/faker-go

Primary LanguageGoMIT LicenseMIT

Faker GO

Test Lint

Simples lib para gerar dados falsos

Instalação

go get  github.com/wander4747/faker-go

Como usar

package main

import (
	"fmt"
	"github.com/wander4747/faker-go"
)

func main() {
	f := faker.New("pt_BR")
	name := f.Person().FullName()
	fmt.Println(name)
}