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.

33 line
412B

  1. package main
  2. var procEcho = chatProcedure{
  3. echoInit,
  4. echoClean,
  5. echoStart,
  6. echoServe,
  7. echoSummary,
  8. echoInto,
  9. }
  10. func echoInit(ss *openIDSessionData) {
  11. }
  12. func echoClean(ss *openIDSessionData) {
  13. }
  14. func echoStart(ss *openIDSessionData, in InWechatMsg) {
  15. }
  16. func echoServe(ss *openIDSessionData, in InWechatMsg) {
  17. }
  18. func echoSummary(ss *openIDSessionData) {
  19. }
  20. func echoInto(ss *openIDSessionData) {
  21. }