![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/reinanbr/base_mvc_go_gin
1.1 - criar a pasta do projeto
$ mkdir app
$ cd app/
1.2 - iniciar um go.mod
$ go mod init github.com/user/app
1.3 - verificar o arquivo go.mod
$ cat go.mod
module github.com/user/app
go 1.21.6
1.4 - Instalando Modulos Ex: gin
$ go get -u github.com/gin-gonic/gin
1.5 - Instalando Modulos do go.mod
$ go get
1.7 - Escrevendo o Código main
$ nano main.go
Deve ficar assim depois disso:
$ ls
main.go go.sum go.mod
1.6 - Rodando o Sistema 1.6.1 - Run -> Rodando o Código Apenas
$ go run main.go
1.6.2 - Build -> Compilando o Arquivo Binário do Sistema
$ go build
$./app
running..
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.