Added Logservice interface

This commit is contained in:
lbarraga 2023-04-08 17:44:30 +02:00
parent f45c7ce6e3
commit a9d18bfe01

View file

@ -0,0 +1,5 @@
package be.ugent.sel.studeez.domain
interface LogService {
fun logNonFatalCrash(throwable: Throwable)
}