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.

32 line
328B

  1. package main
  2. var procDummy = chatProcedure{
  3. dummyInit,
  4. dummyClean,
  5. dummyStart,
  6. dummyServe,
  7. dummySummary,
  8. dummyInto,
  9. }
  10. func dummyInit() {
  11. }
  12. func dummyClean() {
  13. }
  14. func dummyStart(*openIDSessionData, InWechatMsg) {
  15. }
  16. func dummyServe(*openIDSessionData, InWechatMsg) {
  17. }
  18. func dummySummary() {
  19. }
  20. func dummyInto() {
  21. }