You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
184B

  1. package main
  2. import (
  3. "log"
  4. )
  5. func serveCommand(openID string, in InWechatMsg) (state chatState, processed bool) {
  6. log.Println("process command")
  7. return echoCommand(openID, in)
  8. }