tree.go 180 B

12345678910
  1. package http
  2. import (
  3. bm "go-common/library/net/http/blademaster"
  4. )
  5. func syncTree(c *bm.Context) {
  6. svr.SyncTree(c, user(c), c.Request.Header.Get("Cookie"))
  7. c.JSON(nil, nil)
  8. }