123456789101112131415161718192021222324252627 |
- // Copyright 2025 BackendServerTemplate Authors. All rights reserved.
- // Use of this source code is governed by a MIT-style
- // license that can be found in the LICENSE file.
- package main
- import "os"
- func main() {
- os.Exit(command())
- }
- func command() int {
- var err error
- err = InitGitData()
- if err != nil {
- return ReturnError(err)
- }
- err = CreatePatch()
- if err != nil {
- return ReturnError(err)
- }
- return ReturnSuccess()
- }
|