8 lines
163 B
Go
8 lines
163 B
Go
|
package applications
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Repository interface {
|
||
|
CreateApplication(ctx context.Context, name string, userId int, projectId int) (int, error)
|
||
|
}
|