main.go 324 B

1234567891011121314
  1. // Copyright 2025 BackendServerTemplate Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package main
  5. import (
  6. lionv1 "github.com/SongZihuan/BackendServerTemplate/src/mainfunc/lion/v1"
  7. "os"
  8. )
  9. func main() {
  10. os.Exit(lionv1.MainV1())
  11. }