No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

33 líneas
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. }