Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
fixed the backend using anoterh package structure making importing di…
Browse files Browse the repository at this point in the history
…fferent
  • Loading branch information
CommanderStorm committed Sep 20, 2023
1 parent 3ab0527 commit 9ad22bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package de.tum.`in`.tumcampusapp.api.app
import app.tum.campus.api.CampusGrpc
import app.tum.campus.api.GetNewsSourcesRequest
import app.tum.campus.api.GetUpdateNoteRequest
import de.tum.`in`.tumcampusapp.BuildConfig
import de.tum.`in`.tumcampusapp.api.backend.CampusGrpc
import de.tum.`in`.tumcampusapp.api.backend.GetNewsSourcesRequest
import de.tum.`in`.tumcampusapp.api.backend.GetUpdateNoteRequest
import de.tum.`in`.tumcampusapp.component.ui.news.model.NewsSources
import de.tum.`in`.tumcampusapp.component.ui.updatenote.model.UpdateNote
import io.grpc.ManagedChannelBuilder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package de.tum.`in`.tumcampusapp.component.ui.news.model
import androidx.room.Entity
import androidx.room.PrimaryKey
import androidx.room.RoomWarnings
import app.tum.campus.api.GetNewsSourcesReply
import com.google.gson.annotations.SerializedName
import de.tum.`in`.tumcampusapp.api.backend.GetNewsSourcesReply

/**
* This class contains information about the source of a [News] item.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package de.tum.`in`.tumcampusapp.component.ui.updatenote.model

import de.tum.`in`.tumcampusapp.api.backend.GetUpdateNoteReply
import app.tum.campus.api.GetUpdateNoteReply

data class UpdateNote(var updateNote: String) {
companion object {
Expand Down

0 comments on commit 9ad22bd

Please sign in to comment.