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 lines
316B

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