i don't believe jenkins is cooperating
Some checks failed
gitea/franz/pipeline/head There was a failure building this commit

This commit is contained in:
Adam R Grey 2023-03-29 22:02:52 -04:00
parent e1ff1db122
commit 2724646e29
2 changed files with 8 additions and 1 deletions

5
Jenkinsfile vendored
View File

@ -22,4 +22,9 @@ pipeline {
} }
} }
} }
post {
always {
echo 'I will always say Hello again!'
}
}
} }

View File

@ -5,7 +5,9 @@ using Newtonsoft.Json;
namespace gray_messages namespace gray_messages
{ {
//protip: you can derive from message and I'll dispatch it back to you just as you would expect ///<summary>
///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
///</summary>
public abstract class message public abstract class message
{ {
public string type { get { return this.GetType().ToString(); } } public string type { get { return this.GetType().ToString(); } }