Skip to content

Instantly share code, notes, and snippets.

@gtress
gtress / main.go
Created May 1, 2022 03:05 — forked from shershen08/main.go
gin server concept to execute bash commands
package main
import (
"encoding/json"
"net/http"
"os/exec"
log "github.com/Sirupsen/logrus"
"github.com/gin-gonic/gin"
)