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.

procEcho.go 316B

1234567891011121314151617181920212223242526272829303132
  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. }