Files
scroll/prover-stats-api/cmd/main.go
Lawliet-Chan e3b451c641 feat(prover-stats-api): add prover stats API (#635)
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>
2023-07-20 15:33:29 +08:00

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()
}