# ipv4 **Repository Path**: go-basic/ipv4 ## Basic Information - **Project Name**: ipv4 - **Description**: local ipv4 - **Primary Language**: Go - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-15 - **Last Updated**: 2022-07-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Installation ``` go get github.com/go-basic/ipv4 ``` ## Example ``` package main import ( "fmt" "github.com/go-basic/ipv4" ) func main() { ip := ipv4.LocalIP() fmt.Println(ip) ips, _ := ipv4.LocalIPv4s() fmt.Println(ips) } ```