AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
runtime_state.go
根目录
/
internal
/
stats
/
runtime_state.go
1
package stats
2
3
import "reasonix/internal/event"
4
5
func (r *Recorder) RuntimeStateChanged(snapshot event.RuntimeStateSnapshot) {
6
if r != nil {
7
event.PublishRuntimeState(r.inner, snapshot)
8
}
9
}
10
10 lines
GO