-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pratik
committed
Oct 11, 2017
1 parent
da58814
commit 69ddda4
Showing
5 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package logic | ||
|
||
object QuestionHandler { | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
app/services/com/inq/Answer.scala → app/services/model/Answer.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package services.com.inq | ||
package services.model | ||
|
||
/** | ||
* Created by v723840 on 10/11/17. | ||
|
2 changes: 1 addition & 1 deletion
2
app/services/com/inq/Author.scala → app/services/model/Author.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package services.com.inq | ||
package services.model | ||
|
||
/** | ||
* Created by v723840 on 10/11/17. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
app/services/com/inq/Tag.scala → app/services/model/Tag.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package services.com.inq | ||
package services.model | ||
|
||
import java.util.UUID | ||
|
||
/** | ||
* Created by v723840 on 10/11/17. | ||
*/ | ||
class Tag ( | ||
id: UUID, | ||
id: UUID = UUID.randomUUID(), | ||
name: String) |