Skip to content

Commit

Permalink
Add base diff parser
Browse files Browse the repository at this point in the history
  • Loading branch information
Iamlooker committed Aug 16, 2024
1 parent 91e57a1 commit ceaddde
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.looker.sync.fdroid.v2

import com.looker.core.domain.model.Fingerprint
import com.looker.core.domain.model.Repo
import com.looker.sync.fdroid.Parser
import com.looker.sync.fdroid.v2.model.IndexV2
import java.io.File

class DiffParser: Parser<IndexV2> {
override suspend fun parse(file: File, repo: Repo): Pair<Fingerprint, IndexV2> {
TODO("Not yet implemented")
}
}

0 comments on commit ceaddde

Please sign in to comment.