30 lines
491 B
Go
30 lines
491 B
Go
|
package ping
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"backend/internal/svc"
|
||
|
"github.com/zeromicro/go-zero/core/logx"
|
||
|
)
|
||
|
|
||
|
type PingLogic struct {
|
||
|
logx.Logger
|
||
|
ctx context.Context
|
||
|
svcCtx *svc.ServiceContext
|
||
|
}
|
||
|
|
||
|
// 系統健康檢查
|
||
|
func NewPingLogic(ctx context.Context, svcCtx *svc.ServiceContext) *PingLogic {
|
||
|
return &PingLogic{
|
||
|
Logger: logx.WithContext(ctx),
|
||
|
ctx: ctx,
|
||
|
svcCtx: svcCtx,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (l *PingLogic) Ping() error {
|
||
|
// todo: add your logic here and delete this line
|
||
|
|
||
|
return nil
|
||
|
}
|