mirror of
https://github.com/mattermost/focalboard.git
synced 2025-01-08 15:06:08 +02:00
9 lines
213 B
Go
9 lines
213 B
Go
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||
|
// See LICENSE.txt for license information.
|
||
|
|
||
|
package app
|
||
|
|
||
|
func (a *App) GetUsedCardsCount() (int, error) {
|
||
|
return a.store.GetUsedCardsCount()
|
||
|
}
|