Backend developer passionate about building scalable, high-performance applications. Currently expanding my knowledge in Rust while mastering Golang and Node.js.
package main
import "fmt"
type Developer struct {
Name string
Title string
Location string
Stack []string
}
func main() {
me := &Developer{
Name: "Nodirbek No'monov",
Title: "Golang Developer",
Location: "Uzbekistan",
Stack: []string{"Go", "Node.js", "Rust", "PostgreSQL", "MongoDB", "Redis", "RabbitMQ"},
}
fmt.Println("Welcome to my GitHub!")
}