Skip to content

Instantly share code, notes, and snippets.

View trevorkloz's full-sized avatar

trevorkloz trevorkloz

View GitHub Profile
@trevorkloz
trevorkloz / Audit.kt
Created December 15, 2020 09:28
Kotlin Spring Audit Annotation
package com.example.backend.audit
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
annotation class Audit(val purpose: String) {
}