mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 00:18:03 -05:00
Co-authored-by: xinran chen <lawliet@xinran-m1x.local> Co-authored-by: georgehao <haohongfan@gmail.com> Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com>
25 lines
520 B
Go
25 lines
520 B
Go
package main
|
|
|
|
import (
|
|
"scroll-tech/prover-stats-api/cmd/app"
|
|
_ "scroll-tech/prover-stats-api/docs"
|
|
)
|
|
|
|
// @title Scroll Prover Stats API
|
|
// @version 1.0
|
|
// @description This is an API server for Provers.
|
|
|
|
// @contact.name Prover Stats API Support
|
|
// @contact.email Be Pending
|
|
|
|
// @license.name Apache 2.0
|
|
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html
|
|
|
|
// @host localhost:8990
|
|
// @BasePath /api/v1
|
|
|
|
// @securityDefinitions.basic BasicAuth
|
|
func main() {
|
|
app.Run()
|
|
}
|