diff --git a/Jenkinsfile b/Jenkinsfile index 46f4836..a2e1688 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,4 +22,9 @@ pipeline { } } } + post { + always { + echo 'I will always say Hello again!' + } + } } \ No newline at end of file diff --git a/franz/gray_messages/message.cs b/franz/gray_messages/message.cs index 0fb8793..8af320c 100644 --- a/franz/gray_messages/message.cs +++ b/franz/gray_messages/message.cs @@ -5,7 +5,9 @@ using Newtonsoft.Json; namespace gray_messages { - //protip: you can derive from message and I'll dispatch it back to you just as you would expect + /// + ///I forget if I ever achieved this, but: theoretically you don't have to update the package for every message, just derive from this and go nuts + /// public abstract class message { public string type { get { return this.GetType().ToString(); } }